parchlinux global dotfiles
Find a file
2011-12-04 14:51:53 -05:00
vim switch to github vim color scheme 2011-12-04 14:51:53 -05:00
zsh/completion zsh config 2011-01-13 17:26:04 -05:00
aliases Some new aliases: "bake" for bundle exec rake, "staging" for getting into a heroku cedar staging console, "production" for same thing, diff env 2011-10-22 20:43:57 -03:00
gitconfig adding a global .gitconfig that by default tracks branches (so you can 'git push' from a branch it only pushes to the tracking branch you're in) and also provides a tighter, more colorful git log 2011-10-24 10:30:50 -04:00
gvimrc Vim configuration 2011-01-13 17:54:08 -05:00
install.sh Now posix compatible and I have removed the use of tail -r 2011-10-15 18:33:17 +11:00
README.md Adding line about switching to zsh. 2011-08-10 11:32:44 -03:00
tmux.conf use screen-256-color for tmux so that certain color schemes in vim look breathtakingly vibrant 2011-09-06 16:25:06 -04:00
vimrc switch to github vim color scheme 2011-12-04 14:51:53 -05:00
zlogin zsh config 2011-01-13 17:26:04 -05:00
zshrc add in zshkit fun stuff 2011-04-04 10:27:03 -04:00

thoughtbot dotfiles

Flow:

  • Fork this repo.
  • Clone your fork.
  • Install.
  • Track thoughtbot/dotfiles.
  • Customize in master.
  • Update.

Install

From your cloned directory:

./install.sh

This will create symlinks for all config files in your home directory. You can safely run this file multiple times to update.

Note that there is configuration for zsh so if you'd like to switch your shell from the default bash to zsh, on OS X you do:

chsh -s /bin/zsh

Track thoughtbot/dotfiles

One time:

git remote add upstream git@github.com:thoughtbot/dotfiles.git
git fetch upstream
git checkout -b upstream upstream/master

Update

Each time you want to update:

git checkout upstream
git pull
git checkout master
git rebase upstream