RUNME 957 B

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