vimrc: let colorscheme be dependent on an environment variable
This commit is contained in:
parent
92c9b6fba4
commit
41cb23b5da
1 changed files with 3 additions and 0 deletions
3
.vimrc
3
.vimrc
|
@ -50,6 +50,9 @@ augroup XML
|
||||||
autocmd FileType xml :%foldopen!
|
autocmd FileType xml :%foldopen!
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
if "$VIM_COLORSCHEME" == "light"
|
||||||
|
set background=light
|
||||||
|
endif
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
call togglebg#map("<Leader>b")
|
call togglebg#map("<Leader>b")
|
||||||
let load_doxygen_syntax = 1
|
let load_doxygen_syntax = 1
|
||||||
|
|
Loading…
Reference in a new issue