diff options
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -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 |