diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-05 14:28:28 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-05 14:28:28 +0200 |
commit | 3ce8caaaeb01e9e5d140552bdd737affc0e179c6 (patch) | |
tree | b02625b79a90a9691acfba5424d0dfa1bd6d6eab /install | |
parent | 2a75aeac75a67526bada9cae0a698967146357fa (diff) | |
download | vim-3ce8caaaeb01e9e5d140552bdd737affc0e179c6.zip vim-3ce8caaaeb01e9e5d140552bdd737affc0e179c6.tar.gz |
fix install script
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 |