initial commit

This commit is contained in:
2024-04-14 17:46:56 +02:00
commit 17ae767c72
23 changed files with 1508 additions and 0 deletions

19
lua/configs/conform.lua Normal file
View File

@@ -0,0 +1,19 @@
local options = {
formatters_by_ft = {
lua = { "stylua" },
javascript = { "prettier" },
css = { "prettier" },
html = { "prettier" },
sh = { "shfmt" },
},
-- format_on_save = {
-- -- These options will be passed to conform.format()
-- timeout_ms = 500,
-- lsp_fallback = true,
-- },
}
require("conform").setup(options)