summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorjohannst <stoelp@eit.uni-kl.de>2018-11-22 23:19:09 +0100
committerjohannst <stoelp@eit.uni-kl.de>2018-11-22 23:19:09 +0100
commitcf89420425e9c947db99827cd217e24fd3b95f98 (patch)
treed098135758f0024a96e32a2fc3a5e60dcc82c789 /install
parent24b7732a1764efa23f60c0e2e9b4b5d33444d3b8 (diff)
downloaddotfiles-cf89420425e9c947db99827cd217e24fd3b95f98.tar.gz
dotfiles-cf89420425e9c947db99827cd217e24fd3b95f98.zip
Added vim-over & added generation of base16 colorschme to .vimrc
Diffstat (limited to 'install')
-rwxr-xr-xinstall4
1 files changed, 4 insertions, 0 deletions
diff --git a/install b/install
index 2c32e65..89c75a4 100755
--- a/install
+++ b/install
@@ -120,6 +120,10 @@ 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!"; }
vim +PluginInstall +qall
return 0