README 1008 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Running this script creates the appropriate symlinks in home
  2. # Use from within dotFiles directory
  3. # Vim
  4. ln -s dotFiles/vim/ ~/.vim
  5. ln -s dotFiles/vim/vimrc ~/.vimrc
  6. # Zsh
  7. ln -s dotFiles/zsh/zshrc ~/.zshrc
  8. ln -s dotFiles/zsh/zshenv ~/.zshenv
  9. # Pentadactyl
  10. ln -s dotFiles/pentadactyl/pentadactylrc ~/.pentadactylrc
  11. # Screen
  12. ln -s dotFiles/screen/screenrc ~/.screenrc
  13. # This repository has vim plugins as submodules, so initialise and clone them in
  14. git submodule init
  15. git submodule update
  16. # Add more vim plugins from this dotFiles directory, like so:
  17. # git submodule add git://github.com/tpope/vim-pathogen.git vim/bundle/pathogen
  18. # Apart from updating plugins individually, you can update all submodules in one shot
  19. # git submodule foreach git pull origin master
  20. # color for git! Some machines don't have it.
  21. git config color.branch auto
  22. git config color.diff auto
  23. git config color.interactive auto
  24. git config color.status auto
  25. # A lot of this extra knowledge courtesy of vimcasts.org!