Switch dark/light colour
Due to issue with Termonad Solarized colour scheme
This commit is contained in:
parent
a266a2e70c
commit
a25be53a51
|
@ -37,16 +37,17 @@ vim_configurable.customize {
|
||||||
autocmd FilterWritePre * :call TrimWhiteSpace()
|
autocmd FilterWritePre * :call TrimWhiteSpace()
|
||||||
autocmd BufWritePre * :call TrimWhiteSpace()
|
autocmd BufWritePre * :call TrimWhiteSpace()
|
||||||
|
|
||||||
|
" FIXME: Currently always set to dark due to issues with Termonad Solarized theme
|
||||||
" Light during the day, dark during the night
|
" Light during the day, dark during the night
|
||||||
let hour = strftime("%H")
|
let hour = strftime("%H")
|
||||||
if 7 <= hour && hour < 17
|
if 7 <= hour && hour < 17
|
||||||
"set background=light
|
set background=dark
|
||||||
"hi Normal ctermbg=none " Set a transparent background
|
"hi Normal ctermbg=none " Set a transparent background
|
||||||
"let g:airline_solarized_bg='light' " Set the airline background
|
let g:airline_solarized_bg='dark' " Set the airline background
|
||||||
else
|
else
|
||||||
"set background=dark
|
set background=dark
|
||||||
"hi Normal ctermbg=none " Set a transparent background
|
"hi Normal ctermbg=none " Set a transparent background
|
||||||
"let g:airline_solarized_bg='dark' " Set the airline background
|
let g:airline_solarized_bg='dark' " Set the airline background
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Transparent editing of gpg encrypted files.
|
" Transparent editing of gpg encrypted files.
|
||||||
|
|
Loading…
Reference in a new issue