[nvchad] fix configuration

This commit is contained in:
2025-03-03 11:18:02 +07:00
parent 78ab401193
commit cc4fd91e74
15 changed files with 205 additions and 201 deletions

View File

@@ -1,8 +1,5 @@
--type conform.options
local options = {
lsp_fallback = true,
formatters_by_ft = {
formatters_by_ft = {
lua = { "stylua" },
javascript = { "prettier" },
@@ -10,16 +7,7 @@ local options = {
html = { "prettier" },
sh = { "shfmt" },
},
-- adding same formatter for multiple filetypes can look too much work for some
-- instead of the above code you could just use a loop! the config is just a table after all!
-- format_on_save = {
-- -- These options will be passed to conform.format()
-- timeout_ms = 500,
-- lsp_fallback = true,
-- },
},
}
require("conform").setup(options)
return options