diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/statusline.vim | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/configs/statusline.vim b/configs/statusline.vim index 3c9588f..14c004e 100644 --- a/configs/statusline.vim +++ b/configs/statusline.vim @@ -5,20 +5,21 @@ endif set noshowmode -set statusline^=%{coc#status()}%{get(b:,coc_current_function','')} +"set statusline^=%{coc#status()}%{get(b:,coc_current_function','')} -function! CocCurrentFunction() - return get(b:, 'coc_current_function', '') -endfunction +"function! CocCurrentFunction() + "return get(b:, 'coc_current_function', '') +"endfunction -let g:lightline = { - \ 'colorscheme': 'moonfly', - \ 'active': { - \ 'left': [ [ 'mode', 'paste' ], - \ [ 'cocstatus', 'currentfunction', 'readonly', 'filename', 'modified' ] ] - \ }, - \ 'component_function': { - \ 'cocstatus': 'coc#status', - \ 'currentfunction': 'CocCurrentFunction' - \ }, - \ } + +"let g:lightline = { + "\ 'colorscheme': 'default', + "\ 'active': { + "\ 'left': [ [ 'mode', 'paste' ], + "\ [ 'cocstatus', 'currentfunction', 'readonly', 'filename', 'modified' ] ] + "\ }, + "\ 'component_function': { + "\ 'cocstatus': 'coc#status', + "\ 'currentfunction': 'CocCurrentFunction' + "\ }, + "\ } |