diff options
feat: add `prettierd` for HTML files
-rw-r--r-- | flake.nix | 1 | ||||
-rw-r--r-- | lua/config/plugins/formatting.lua | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -159,6 +159,7 @@ typescript = [ angular-language-server biome + prettierd typescript-language-server ]; diff --git a/lua/config/plugins/formatting.lua b/lua/config/plugins/formatting.lua index 6efe5d2..98bbe06 100644 --- a/lua/config/plugins/formatting.lua +++ b/lua/config/plugins/formatting.lua @@ -11,6 +11,8 @@ return { nix = { "nixfmt" }, rust = { "rustfmt", lsp_format = "fallback" }, + html = { "prettierd" }, + htmlangular = { "prettierd" }, json = { "biome" }, jsonc = { "biome" }, javascript = { "biome" }, |