add html, install prettierd

This commit is contained in:
StuartStephens 2025-03-17 17:50:07 -04:00
parent a4388cf481
commit 5e6992beb2
1 changed files with 3 additions and 2 deletions

View File

@ -765,10 +765,11 @@ require('lazy').setup({
formatters_by_ft = {
lua = { 'stylua' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
-- python = { 'isort', 'black' },
--
-- You can use 'stop_after_first' to run the first available formatter from the list
-- javascript = { "prettierd", "prettier", stop_after_first = true },
javascript = { 'prettierd', 'prettier', stop_after_first = false },
html = { 'prettierd', 'prettier', stop_after_first = false },
},
},
},