1
0
Fork 0
mirror of synced 2024-07-02 21:41:09 -04:00

Now I can toogle light & dark schemes

This commit is contained in:
Mirosław Pragłowski 2015-05-05 01:00:11 +02:00
parent b9a3068e7b
commit 21b59f336f

View file

@ -1,19 +1,29 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" cursor line
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
function! SetupCursorLine(...)
highlight CursorLine ctermbg=NONE cterm=NONE gui=NONE
highlight LineNr ctermfg=darkgrey
set cursorline
let &colorcolumn="80,".join(range(120,999),",")
highlight ColorColumn ctermbg=235
endfunction
call SetupCursorLine()
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" werewolf.vim " werewolf.vim
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
function! ToggleColorScheme(...)
:call WerewolfToggle()
:call SetupCursorLine()
endfunction
let g:werewolf_day_themes = ['github'] let g:werewolf_day_themes = ['github']
let g:werewolf_night_themes = ['desert'] let g:werewolf_night_themes = ['desert']
let g:werewolf_change_automatically = 0 let g:werewolf_change_automatically = 0
" Fast toogle " Fast toogle
nmap <leader>. :WerewolfToggle<cr> nmap <leader>. :call ToggleColorScheme()<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" cursor line
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
highlight CursorLine ctermbg=NONE cterm=NONE gui=NONE
highlight LineNr ctermfg=darkgrey
set cursorline
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => my custom settings " => my custom settings
@ -21,8 +31,6 @@ set cursorline
set number " line numbers set number " line numbers
set nocompatible " choose no compatibility with legacy vi set nocompatible " choose no compatibility with legacy vi
set nowrap " don't wrap lines set nowrap " don't wrap lines
let &colorcolumn="80,".join(range(120,999),",")
highlight ColorColumn ctermbg=235
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => trailing whitespaces (show & remove on save) " => trailing whitespaces (show & remove on save)