Created
February 5, 2016 21:45
-
-
Save waffle2k/e9922adaf20b652a035b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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