- 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