add a few more language servers

This commit is contained in:
Sakooooo 2023-08-28 09:41:10 +00:00
parent 821fc6567b
commit a617b90280
Signed by: sako
GPG key ID: FE52FD65B76E4751
4 changed files with 3 additions and 4 deletions

View file

@ -12,6 +12,7 @@ in
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [
nodejs nodejs
yarn yarn
nodePackages.typescript-language-server
]; ];
}; };
} }

View file

@ -15,13 +15,9 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [
# lua language server
lua-language-server lua-language-server
# lua
lua lua
# luarocks
luarocks luarocks
# format and lint
stylua stylua
selene selene
]; ];

View file

@ -18,6 +18,7 @@ in {
python3 python3
black black
python310Packages.pip python310Packages.pip
nodePackages.pyright
]; ];
}; };
} }

View file

@ -12,6 +12,7 @@ in
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [
rustup rustup
cargo cargo
rust-analyzer
]; ];
}; };
} }