From ed47f7b1bf0e97236d18e27e2096feb71e201c49 Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Wed, 19 Mar 2025 17:13:35 +0100 Subject: [PATCH] home/neovim: Fix lightline, disable coc --- home/neovim.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 ''; };