README 839 B

123456789101112131415161718192021222324252627282930313233343536
  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. #
  18. # git submodule add git://github.com/tpope/vim-pathogen.git vim/bundle/pathogen
  19. # Apart from updating plugins individually, you can update all submodules in one shot
  20. #
  21. # git submodule foreach git pull origin master
  22. # A lot of this extra knowledge courtesy of vimcasts.org!