fix to be able to use solarized colourscheme even in lower versions of vim
This commit is contained in:
parent
cc00f4a783
commit
574a059da6
1 changed files with 6 additions and 7 deletions
13
vimrc
13
vimrc
|
@ -109,13 +109,9 @@ if v:version >= 703
|
||||||
|
|
||||||
" buffergator options
|
" buffergator options
|
||||||
map <C-W>, :BuffergatorToggle<cr>
|
map <C-W>, :BuffergatorToggle<cr>
|
||||||
|
|
||||||
" check before setting
|
|
||||||
if &t_Co > 88
|
|
||||||
let g:airline_powerline_fonts = 1
|
|
||||||
colorscheme solarized
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
elseif if filereadable(expand("$HOME/.vim/bundle/forked-solarized.vim/colors/solarized.vim"))
|
||||||
|
set rtp+=~/.vim/bundle/forked-solarized.vim
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" gvim stuff
|
" gvim stuff
|
||||||
|
@ -130,7 +126,10 @@ if has("gui_running")
|
||||||
map <S-Insert> <MiddleMouse>
|
map <S-Insert> <MiddleMouse>
|
||||||
map! <S-Insert> <MiddleMouse>
|
map! <S-Insert> <MiddleMouse>
|
||||||
colorscheme jellybeans
|
colorscheme jellybeans
|
||||||
elseif &t_Co < 88
|
elseif &t_Co > 88
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
colorscheme solarized
|
||||||
|
else
|
||||||
colorscheme elflord
|
colorscheme elflord
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue