Merge branch 'tsserver'

This commit is contained in:
Miguel Palhas
2025-02-03 12:38:59 +00:00
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@
./zsh.nix ./zsh.nix
./neovim ./neovim
./rust.nix ./rust.nix
./nodejs.nix
./git ./git
./solidity.nix ./solidity.nix
./dev.nix ./dev.nix
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
typescript-language-server
];
}