School: add typescript settings to helix

This commit is contained in:
Toast 2024-03-05 11:17:01 +01:00
parent 7c731dd583
commit 9bbe570dfb
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home-manager.users.toast = {
programs.helix = {
extraPackages = with pkgs; [
nodePackages.typescript-language-server
];
};
};
}