:echo $VIMRUNTIME
/usr/local/share/vim/vim74
# Prefer US English and use UTF-8. | |
export LANG='en_US.UTF-8'; | |
export LC_ALL='en_US.UTF-8'; | |
# Use 256 colors | |
export TERM=xterm-256color | |
# More color settings | |
export CLICOLOR=1 | |
export LSCOLORS=Exfxcxdxbxegedabagacad |
mix3d asked for some help using this guide with windows so here we go. This was tested with Windows 10. Run all commands in Git Bash once it's installed.
Github will be the main account and bitbucket the secondary.
Vagrant.configure("2") do |config| | |
config.vm.provision "chef_solo" do |chef| | |
#chef.cookbooks_path = "../my_recipes/cookbooks" | |
chef.roles_path = "../my_recipes/roles" | |
chef.add_role("web") | |
chef.data_bags_path = "../my_recipes/data_bags" | |
chef.node_name = "foo" | |
chef.add_recipe "apache" | |
chef.add_recipe "apt" |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "precise32" | |
config.vm.network :forwarded_port, host: 5401, guest: 80 | |
config.vm.provision :shell, :path => "bootstrap.sh" |
data:text/html,<h1>Hello World!</h1>
<!DOCTYPE html>
<html>
# ############ # | |
# ~/.tmux.conf # | |
# ############ # | |
# Change prefix binding from C-b to C-a | |
unbind C-b | |
set -g prefix C-a | |
bind a send-prefix | |
# Reload .tmux.conf |
Find channels:
/list <topic>