Skip to content
Snippets Groups Projects
Commit 43e4b1a6 authored by La Fée Verte's avatar La Fée Verte
Browse files

adding TogBG function and solarized default values

parent 2fa3886c
No related branches found
No related tags found
No related merge requests found
...@@ -70,16 +70,32 @@ syntax on ...@@ -70,16 +70,32 @@ syntax on
syntax enable syntax enable
" ------------------------------------------------------------------ " ------------------------------------------------------------------
" Solarized Colorscheme Config " Solarized8 Colorscheme Config
" ------------------------------------------------------------------ " ------------------------------------------------------------------
colorscheme solarized8 colorscheme solarized8_high
let g:solarized_diffmode = "normal"
let g:solarized_enable_extra_hi_groups = 0
let g:solarized_italics = 1
let g:solarized_old_cursor_style = 0
let g:solarized_statusline = "normal"
let g:solarized_termtrans = 0
let g:solarized_visibility = "normal"
" call togglebg#map("") " call togglebg#map("")
if has('gui_running') if has('gui_running')
set background=light set background=dark
else else
set background=light set background=dark
" set background=dark
endif endif
function! TogBG()
if (&background=='dark')
set background=light
else
set background=dark
endif
endfunction
" }}} " }}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment