linenr and cursorlinenr betterer

This commit is contained in:
ManjaroOne666 2018-05-10 16:16:49 +01:00
parent ce87f94d97
commit a45f19fd6a
1 changed files with 4 additions and 4 deletions

View File

@ -156,15 +156,15 @@ endfunction
function! DoInsertEnter()
set cursorline"{{{
hi LineNr ctermfg=235 guifg=#262626
hi CursorLineNr ctermfg=250 guifg=#bcbcbc
call SetColor('LineNr', '#262626', '', '#cccccc', '', '')
call SetColor('CursorLineNr', '#bcbcbc', '', '#999999', '', 'bold')
endfunction
"}}}
function! DoInsertLeave()
set nocursorline"{{{
hi LineNr ctermfg=237 guifg=#3a3a3a
hi CursorLineNr ctermfg=243 guifg=#767676
call SetColor('LineNr', '#3a3a3a', '', '#999999', '', '')
call SetColor('CursorLineNr', '#767676', '', '#777777', '', 'bold')
endfunction
"}}}