From 48f93d7b98cebba7f1516dbdc106c295f39b96eb Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 13 Sep 2021 20:39:47 +0700 Subject: [PATCH] neovim: disable typescript.showUnused --- modules/user/neovim.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/user/neovim.nix b/modules/user/neovim.nix index a1705fa..dda947c 100644 --- a/modules/user/neovim.nix +++ b/modules/user/neovim.nix @@ -158,5 +158,6 @@ "rust-analyzer.lens.enable" = false; "rust-analyzer.inlayHints.enable" = false; "rust-analyzer.serverPath" = pkgs.rust-analyzer + "/bin/rust-analyzer"; + "typescript.showUnused" = false; }; }