fix formatters

This commit is contained in:
StuartStephens 2025-03-30 19:07:08 -04:00
parent a262dc2b60
commit d7cffd0079
1 changed files with 3 additions and 3 deletions

View File

@ -768,9 +768,9 @@ require('lazy').setup({
-- python = { 'isort', 'black' },
--
-- You can use 'stop_after_first' to run the first available formatter from the list
javascript = { 'prettierd', 'prettier', stop_after_first = false },
html = { 'prettierd', 'prettier', stop_after_first = false },
htmlangular = { 'htmlbeautifier', stop_after_first = false },
javascript = { 'prettier', 'prettierd', stop_after_first = false },
html = { 'prettier', 'htmlbeautifier', 'prettierd', stop_after_first = true },
htmlangular = { 'prettier', 'htmlbeautifier', stop_after_first = true },
},
},
},