- 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
26 lines
378 B
Nix
26 lines
378 B
Nix
_: {
|
|
programs.zed-editor.extensions = [
|
|
"toml"
|
|
"dockerfile"
|
|
"git-firefly"
|
|
"vue"
|
|
# "astro"
|
|
"docker-compose"
|
|
"nix"
|
|
"csv"
|
|
"rainbow-csv"
|
|
"vscode-icons"
|
|
"codebook"
|
|
"python-requirements"
|
|
"one-dark-pro-monokai-darker"
|
|
"hyprlang"
|
|
"json5"
|
|
"html-jinja"
|
|
"deputy"
|
|
"biome"
|
|
"opencode"
|
|
"fish"
|
|
"tera"
|
|
];
|
|
}
|