mirror of
https://github.com/Dannecron/Dannecron.git
synced 2025-12-25 16:22:35 +03:00
add nvchad-config
This commit is contained in:
25
nvchad-config/configs/conform.lua
Normal file
25
nvchad-config/configs/conform.lua
Normal file
@@ -0,0 +1,25 @@
|
||||
--type conform.options
|
||||
local options = {
|
||||
lsp_fallback = true,
|
||||
|
||||
formatters_by_ft = {
|
||||
lua = { "stylua" },
|
||||
|
||||
javascript = { "prettier" },
|
||||
css = { "prettier" },
|
||||
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)
|
||||
Reference in New Issue
Block a user