RUNME 974 B

12345678910111213141516171819202122232425262728293031323334353637
  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. mkdir ~/.vimundo
  8. # Zsh
  9. ln -s dotFiles/zsh/zshrc ~/.zshrc
  10. ln -s dotFiles/zsh/zshenv ~/.zshenv
  11. # Pentadactyl
  12. ln -s dotFiles/pentadactyl/pentadactylrc ~/.pentadactylrc
  13. # Screen
  14. ln -s dotFiles/screen/screenrc ~/.screenrc
  15. # This repository has vim plugins as submodules, so initialise and clone them in
  16. git submodule init
  17. git submodule update
  18. # Add more vim plugins from this dotFiles directory, like so:
  19. # git submodule add git://github.com/tpope/vim-pathogen.git vim/bundle/pathogen
  20. #
  21. # Apart from updating plugins individually, you can update all submodules in one shot
  22. # git submodule foreach git pull origin master
  23. # color for git! Some machines don't have it.
  24. git config --global color.ui true
  25. # A lot of this extra knowledge courtesy of vimcasts.org!
  26. touch ~/.ssh/known_hosts