Disable rust-analyzer's codelens as it breaks with coc
diff --git a/modules/neovim/coc/default.nix b/modules/neovim/coc/default.nix
index 0fbee44..f50179e 100644
--- a/modules/neovim/coc/default.nix
+++ b/modules/neovim/coc/default.nix
@@ -41,6 +41,8 @@
         "cSpell.dictionaries" = [ "imperative" ];
         "git.enableGutters" = false; # We're using another plugin to do this
         "rust-analyzer.server.path" = "${pkgs.rust-analyzer}/bin/rust-analyzer";
+        "rust-analyzer.lens.enable" = false;
+        "rust-analyzer.lens.debug.enable" = false;
         "omnisharp.path" = "${pkgs.omnisharp-roslyn}/bin/OmniSharp";
         "markdownlint.config" = {
           line-length = {