diff options
author | johannst <stoelp@eit.uni-kl.de> | 2019-05-19 15:11:24 +0200 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2019-05-19 15:11:24 +0200 |
commit | c5659817fff766ff2306796e1ac4bb4b1dcc9d8f (patch) | |
tree | e5c98c6df90bc5eae27aadcbb79810c4baede359 /install | |
parent | 539b1125103eacc79a4f82fd677e28b76262b900 (diff) | |
download | dotfiles-c5659817fff766ff2306796e1ac4bb4b1dcc9d8f.tar.gz dotfiles-c5659817fff766ff2306796e1ac4bb4b1dcc9d8f.zip |
install: removed vim base16 theme source, not needed
Diffstat (limited to 'install')
-rwxr-xr-x | install | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -120,11 +120,7 @@ function vimConfigInstaller() { # link ctags type ctags >/dev/null 2>&1 && { echo -e "let \$MYCTAGS='$(which ctags)'" >> $vimrc; } echo -e "source $ABS_BASE_DIR/vimrc" >> $vimrc - echo -e 'if filereadable(expand("~/.vimrc_background")) && g:gBase16ColorEnabled == 1' >> $vimrc - echo -e '\tlet base16colorspace=256' >> $vimrc - echo -e '\tsource ~/.vimrc_background' >> $vimrc - echo -e 'endif' >> $vimrc - git clone https://github.com/VundleVim/Vundle.vim.git $vim_home/bundle/Vundle.vim || { echo "Vundle not cloned, using existing!"; } + git clone https://github.com/VundleVim/Vundle.vim.git $vim_home/bundle/Vundle.vim &> /dev/null || { echo "Vundle not cloned, using existing!"; } vim +PluginUpdate +qall -c "q" return 0 } |