Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 793 Bytes

File metadata and controls

20 lines (18 loc) · 793 Bytes

Settings

Vim - .vimrc

  • Clone the settings file and move it to an appropriate file. I put mine in ~/Documents.
    cd ~/Documents/ && git clone https://github.com/llipio/DevSettings
  • Symlink your home settings to your new location.
    For vim: ln -s ~/Documents/DevSettings/.vimrc ~/.vimrc
  • Install Vundle: git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
  • Install Silver Searcher: https://github.com/ggreer/the_silver_searcher
    For OSX: brew install the_silver_searcher

Bashprofile

  • Add to your bash profile: vim ~/.bash_profile
if [ -f ~/.devBash ]; then
  source ~/.devBash
fi$
  • Symlink devBash to this location: ln -s ~/Documents/DevSettings/.devBash ~/.devBash
  • Refresh: source ~/.bash_profile