From 065f1ae8bffd27ab8058142d06d89f442ff615b4 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 23 Feb 2024 00:27:42 +0100 Subject: [PATCH] Remove coc config --- home/neovim/init.vim | 3 --- home/neovim/neovim.nix | 7 ------- 2 files changed, 10 deletions(-) diff --git a/home/neovim/init.vim b/home/neovim/init.vim index f588b97..91dec3c 100644 --- a/home/neovim/init.vim +++ b/home/neovim/init.vim @@ -67,9 +67,6 @@ set undofile " clear highlighted search noremap :nohlsearch -" Highlight symbol under cursor on CursorHold -autocmd CursorHold * silent call CocActionAsync('highlight') - " Append modeline after last line in buffer. " Use substitute() instead of printf() to handle '%%s' modeline in LaTeX files. function! AppendModeline() diff --git a/home/neovim/neovim.nix b/home/neovim/neovim.nix index b45c694..c864abe 100644 --- a/home/neovim/neovim.nix +++ b/home/neovim/neovim.nix @@ -452,13 +452,6 @@ in { programs.neovim = { vimAlias = true; viAlias = true; - coc = { - enable = true; - # settings = { - # "rust-analyzer.serverPath" = "${pkgs.rust-analyzer}/bin/rust-analyzer"; - # "gopls.experimentalWorkspaceModule" = true; - # }; - }; } // config; # programs.vim = config;