Skip to content

Instantly share code, notes, and snippets.

@oko
Last active August 29, 2015 14:11
Show Gist options
  • Save oko/2cf9801e8243b4396e2b to your computer and use it in GitHub Desktop.
Save oko/2cf9801e8243b4396e2b to your computer and use it in GitHub Desktop.
Vim setup script.
#!/bin/sh
# Install Pathogen
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
# Move into Pathogen bundle dir
cd ~/.vim/bundle
## Solarized color scheme
git clone https://github.com/altercation/vim-colors-solarized.git
## SaltStack syntax highlighting
git clone https://github.com/saltstack/salt-vim.git
## Sensible Vim default configuration
git clone git://github.com/tpope/vim-sensible.git
# Install `.vimrc`
wget -O - https://gist.githubusercontent.com/oko/f94eaab70f290512ed6a/raw > ~/.vimrc
@oko
Copy link
Author

oko commented Jan 13, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment