Files
garandos/modules/home/zed/extra-packages.nix
T
GarandPLG f8cdbdf88a Configure TS, Vue, Astro and CSS language servers
- Comment out the Astro extension in Zed
- Add tailwindcss-language-server and typescript-language-server
  packages
- Configure language servers for TypeScript, Astro, Vue, and CSS
- Enable Vue‑specific LSP options and TypeScript inlay hints
- Provide TailwindCSS class extraction regex patterns for the LSP
2026-08-18 19:56:50 +02:00

16 lines
243 B
Nix

{pkgs, ...}: {
programs.zed-editor.extraPackages = with pkgs; [
# biome
rust-analyzer
nixd
alejandra
opencode
uv
python314
ruff
deputy
tailwindcss-language-server
typescript-language-server
];
}