1
0
Fork 0

solarized options moved to setting the theme for those occasions when I do not have vundle enabled

This commit is contained in:
Von Random 2015-01-19 13:15:09 +03:00
parent 1f6c2bf57e
commit 609609c258

8
vimrc
View file

@ -119,11 +119,6 @@ if v:version >= 700
" buffergator options " buffergator options
map <C-W>, :BuffergatorToggle<cr> map <C-W>, :BuffergatorToggle<cr>
" solarized options
let g:solarized_italic=0
let g:solarized_bold=0
let g:solarized_visibility='low'
endif endif
" gvim and colorschemes related stuff " gvim and colorschemes related stuff
@ -138,6 +133,9 @@ if v:version >= 700
map! <S-Insert> <MiddleMouse> map! <S-Insert> <MiddleMouse>
colorscheme gotham colorscheme gotham
elseif &t_Co > 87 elseif &t_Co > 87
let g:solarized_italic=0
let g:solarized_bold=0
let g:solarized_visibility='low'
colorscheme solarized colorscheme solarized
endif endif
else else