From fa1a3decb534bf87640234ceaf4e892b34856696 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Thu, 11 Sep 2025 14:16:23 +1000 Subject: [PATCH] uninstall typescript support for neovim in favour of vscode --- modules/nixos/features/nixvim.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/nixos/features/nixvim.nix b/modules/nixos/features/nixvim.nix index 1397633..b279636 100644 --- a/modules/nixos/features/nixvim.nix +++ b/modules/nixos/features/nixvim.nix @@ -22,7 +22,6 @@ in }; dependencies = { tree-sitter.enable = true; - nodejs.enable = true; gcc.enable = true; }; diagnostic.settings.virtual_lines = true; @@ -96,9 +95,6 @@ in # syntax highlighting treesitter.enable = true; - } - // lib.optionalAttrs config.dev.enable { - typescript-tools.enable = true; }; }; };