diff options
author | johannst <johannes.stoelp@gmail.com> | 2019-11-30 11:43:06 +0000 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2019-11-30 11:43:06 +0000 |
commit | d7bc67f8cb41f00ff3ec03e5fd8f6afe5f2b59ca (patch) | |
tree | a60c2cf0da668c6180a3a0dd0078c31151a6c7eb /vimrc | |
parent | 4d1991fdde86152510327a32e033f14163b82302 (diff) | |
download | dotfiles-d7bc67f8cb41f00ff3ec03e5fd8f6afe5f2b59ca.tar.gz dotfiles-d7bc67f8cb41f00ff3ec03e5fd8f6afe5f2b59ca.zip |
bootstrap vundle in vimrc instead installer
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -12,6 +12,17 @@ endif nnoremap <leader>ev :edit ~/.vimrc<CR> nnoremap <leader>sv :source ~/.vimrc<CR> +"{{{ Vundle bootstrap + +let s:needBootstrapVundle=0 +if !filereadable(expand('$VIMHOME/bundle/Vundle.vim/README.md')) + echo "Installing Vundle...\n" + silent !mkdir -p $VIMHOME/bundle + silent !git clone https://github.com/VundleVim/Vundle.vim.git $VIMHOME/bundle/Vundle.vim + let s:needBootstrapVundle=1 +endif + +"}}} "{{{ Plugin Management " to install plugins open vim and run :PluginInstall from within vim OR @@ -45,6 +56,10 @@ Plugin 'chriskempson/base16-vim' call vundle#end() +if s:needBootstrapVundle == 1 + :PluginUpdate +endif + "}}} "{{{ Plugin Config |