Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created February 5, 2016 21:45
Show Gist options
  • Save waffle2k/e9922adaf20b652a035b to your computer and use it in GitHub Desktop.
Save waffle2k/e9922adaf20b652a035b to your computer and use it in GitHub Desktop.
## Make .vim a git repo
mkdir -p ~/.vim && cd ~/.vim && git init
## Pathogen
$ cd ~/.vim
$ git submodule add https://github.com/tpope/vim-pathogen.git bundle/pathogen.vim
$ mkdir -p autoload
$ cd autoload
$ ln -s ../bundle/pathogen.vim/autoload/pathogen.vim .
## Command-T
$ cd ~/.vim
$ git submodule add https://github.com/wincent/command-t.git bundle/command-t
$ git submodule init
$ cd ~/.vim/bundle/command-t/ruby/command-t
$ ruby extconf.rb
$ make
## Solarized
$ cd ~/.vim/
$ git submodule add git://github.com/altercation/vim-colors-solarized.git bundle/vim-solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment