From 0e9b8351da90b776c9469dc5f07db3117b07747a Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sat, 14 Sep 2024 11:17:56 -0500 Subject: [PATCH] plugins/typescript-tools: remove redundant extraPlugins These are included in the vimPlugins overrides upstream --- plugins/by-name/typescript-tools/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/by-name/typescript-tools/default.nix b/plugins/by-name/typescript-tools/default.nix index 197bb2d7..fa54b61d 100644 --- a/plugins/by-name/typescript-tools/default.nix +++ b/plugins/by-name/typescript-tools/default.nix @@ -159,11 +159,7 @@ in }; }; config = mkIf cfg.enable { - extraPlugins = with pkgs.vimPlugins; [ - cfg.package - plenary-nvim - nvim-lspconfig - ]; + extraPlugins = [ cfg.package ]; plugins.lsp.postConfig = with cfg;