Skip to content

Instantly share code, notes, and snippets.

@securitygeneration
Created January 25, 2017 10:18
Show Gist options
  • Save securitygeneration/d88711b5c0b7324a1775e4aafded7182 to your computer and use it in GitHub Desktop.
Save securitygeneration/d88711b5c0b7324a1775e4aafded7182 to your computer and use it in GitHub Desktop.
Script to set up vim config/plugins
#!/bin/bash
# Download vimrc, colors and plugins
#-----------------------------------
mkdir -p ~/.vim ~/.vim/colors ~/.vim/autoload ~/.vim/bundle
wget -O ~/.vimrc https://gist.githubusercontent.com/securitygeneration/d1ab6de3b445e1b027cb25bc280bd976/raw
wget -O ~/.vim/colors/mustang.vim https://raw.githubusercontent.com/croaker/mustang-vim/master/colors/mustang.vim
wget -O ~/.vim/colors/solarized.vim https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
cd ~/.vim/bundle
git clone git://github.com/jeffkreeftmeijer/vim-numbertoggle.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment