diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -2,9 +2,10 @@ DIR=$(readlink -f $(dirname $0)) pushd $HOME >/dev/null +[ -e .vim ] & rm .vim ln -sf $DIR .vim +[ -e .vimrc ] & rm .vimrc ln -sf $DIR/vimrc .vimrc -ln -sf $DIR/vimrc-bepo .vimrc-bepo popd $HOME >/dev/null [ ! -d $DIR/autoload ] && mkdir $DIR/autoload @@ -13,13 +14,18 @@ echo "update pathogen" && curl -# -o $DIR/autoload/pathogen.vim https://raw.gith PROTO=git # github.com/Townk/vim-autoclose.git GIT_URLS=" - github.com/scrooloose/nerdtree.git - github.com/msanders/snipmate.vim.git - github.com/vim-scripts/taglist.vim.git - github.com/tpope/vim-commentary.git - github.com/mirell/vim-matchit.git - github.com/tpope/vim-repeat.git - github.com/tpope/vim-surround.git + github.com/scrooloose/nerdtree.git + github.com/msanders/snipmate.vim.git + github.com/vim-scripts/taglist.vim.git + github.com/tpope/vim-commentary.git + github.com/jwhitley/vim-matchit.git + github.com/tpope/vim-repeat.git + github.com/tpope/vim-surround.git + github.com/tpope/vim-git.git + github.com/tpope/vim-fugitive.git + github.com/tpope/vim-haml.git + github.com/tpope/vim-markdown.git + github.com/majutsushi/tagbar " [ ! -d $DIR/bundle ] && mkdir $DIR/bundle cd $DIR/bundle |