From 776471b3646fa1ac2c082cc0b1432ade74bf399c Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Thu, 4 Sep 2025 14:01:20 +1000 Subject: [PATCH] install typescript lsp for nvim --- modules/nixos/features/nixvim.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/nixos/features/nixvim.nix b/modules/nixos/features/nixvim.nix index edf0463..1397633 100644 --- a/modules/nixos/features/nixvim.nix +++ b/modules/nixos/features/nixvim.nix @@ -96,6 +96,9 @@ in # syntax highlighting treesitter.enable = true; + } + // lib.optionalAttrs config.dev.enable { + typescript-tools.enable = true; }; }; };