home/neovim: Fix lightline, disable coc

This commit is contained in:
Felix Albrigtsen 2025-03-19 17:13:35 +01:00
parent fbfb89280b
commit ed47f7b1bf

View File

@ -50,7 +50,7 @@ in {
" Integrate status with lightline
let g:lightline = {
\ 'active': {
\ 'left': [[ 'coc_info', 'coc_hints', 'coc_errors', 'coc_warnings', 'coc_ok' ], [ 'coc_status' ]]
\ 'left': [[ 'mode', 'paste', 'filename', 'readonly', 'coc_info', 'coc_hints', 'coc_errors', 'coc_warnings', 'coc_ok' ], [ 'coc_status' ]]
\ }
\ }
@ -132,6 +132,9 @@ in {
" Start with copilot disabled
let g:copilot_enabled = 0
" Start with Coc disabled
" autocmd VimEnter * CocDisable
'';
};