- 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
- 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