README 785 B

123456789101112131415161718192021222324252627282930313233
  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. # This repository has vim plugins as submodules, so initialise and clone them in
  12. git submodule init
  13. git submodule update
  14. # Add more vim plugins from this dotFiles directory, like so:
  15. #
  16. # git submodule add git://github.com/tpope/vim-pathogen.git vim/bundle/pathogen
  17. # Apart from updating plugins individually, you can update all submodules in one shot
  18. #
  19. # git submodule foreach git pull origin master
  20. # A lot of this extra knowledge courtesy of vimcasts.org!