Last active
November 16, 2016 02:14
-
-
Save TimothyGu/c89db6889225f800532f 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
| #!/bin/sh | |
| set -e | |
| mkdir -p ~/.vim/autoload ~/.vim/bundle | |
| curl -LSso ~/.vim/autoload/pathogen.vim https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim | |
| cd ~/.vim/bundle | |
| git clone --depth=1 https://github.com/tpope/vim-sensible.git & | |
| git clone --depth=1 https://github.com/tomtom/tcomment_vim.git & | |
| git clone --depth=1 https://github.com/Raimondi/delimitMate.git & | |
| git clone --depth=1 https://github.com/editorconfig/editorconfig-vim.git & | |
| git clone --depth=1 https://github.com/altercation/vim-colors-solarized.git & | |
| git clone --depth=1 https://github.com/tpope/vim-sleuth.git & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment