languages/astro: fix syntax issue in inline Lua; add prettierd

This commit is contained in:
raf 2025-04-03 07:36:46 +03:00
parent a4d59adcf8
commit b49402bccd
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -22,7 +22,7 @@
package = pkgs.astro-language-server; package = pkgs.astro-language-server;
lspConfig = '' lspConfig = ''
lspconfig.astro.setup { lspconfig.astro.setup {
capabilities = capabilities; capabilities = capabilities,
on_attach = attach_keymaps, on_attach = attach_keymaps,
cmd = ${ cmd = ${
if isList cfg.lsp.package if isList cfg.lsp.package
@ -41,6 +41,10 @@
package = pkgs.nodePackages.prettier; package = pkgs.nodePackages.prettier;
}; };
prettierd = {
package = pkgs.prettierd;
};
biome = { biome = {
package = pkgs.biome; package = pkgs.biome;
}; };
@ -84,16 +88,16 @@ in {
enable = mkEnableOption "Astro LSP support" // {default = config.vim.languages.enableLSP;}; enable = mkEnableOption "Astro LSP support" // {default = config.vim.languages.enableLSP;};
server = mkOption { server = mkOption {
description = "Astro LSP server to use";
type = enum (attrNames servers); type = enum (attrNames servers);
default = defaultServer; default = defaultServer;
description = "Astro LSP server to use";
}; };
package = mkOption { package = mkOption {
description = "Astro LSP server package, or the command to run as a list of strings";
example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]'';
type = either package (listOf str); type = either package (listOf str);
default = servers.${cfg.lsp.server}.package; default = servers.${cfg.lsp.server}.package;
example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]'';
description = "Astro LSP server package, or the command to run as a list of strings";
}; };
}; };