From 1566025a6c945ca95c0258e8b41585ffd4950ac8 Mon Sep 17 00:00:00 2001 From: yushyin Date: Sat, 5 Sep 2015 02:46:30 +0200 Subject: Vim: Hook for base16-monokai colorscheme --- vim/vimrc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index ec4ddf9..141276a 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -74,6 +74,14 @@ if neobundle#tap('syntastic') let g:syntastic_warning_symbol = '?' call neobundle#untap() endif +if neobundle#tap('base16-vim') + set bg=dark + let base16colorspace=256 + function! neobundle#hooks.on_post_source(bundle) + colorscheme base16-monokai + endfunction + call neobundle#untap() +endif call neobundle#end() filetype plugin indent on @@ -96,11 +104,6 @@ set ts=4 set ttyfast set wmnu -" Set Monokai Colorscheme -colorscheme base16-monokai -let base16colorspace=256 -set bg=dark - if has('gui_running') set go-=R set go-=T -- cgit v1.2.3-24-g4f1b