diff --git a/home/neovim.nix b/home/neovim.nix index e2cd81f..a5405fe 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -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 ''; };