mirror of https://github.com/E-Almqvist/dotfiles
parent
63d009ea2c
commit
f0572acb27
@ -1,28 +1,33 @@ |
||||
local options = { |
||||
lsp_fallback = true, |
||||
lsp_fallback = true, |
||||
|
||||
formatters_by_ft = { |
||||
-- Divine Intellect Languages |
||||
lua = { "stylua" }, |
||||
formatters_by_ft = { |
||||
-- Divine Intellect Languages |
||||
lua = { "stylua" }, |
||||
|
||||
-- Web Dev shit |
||||
javascript = { "prettier" }, |
||||
typescript = { "prettier" }, |
||||
css = { "prettier" }, |
||||
scss = { "prettier" }, |
||||
html = { "prettier" }, |
||||
-- Web Dev shit |
||||
javascript = { "prettier" }, |
||||
typescript = { "prettier" }, |
||||
javascriptreact = { "prettier" }, |
||||
typescriptreact = { "prettier" }, |
||||
css = { "prettier" }, |
||||
scss = { "prettier" }, |
||||
html = { "prettier" }, |
||||
|
||||
sh = { "shfmt" }, |
||||
}, |
||||
-- Data Science & AI stuff |
||||
python = { "black" }, |
||||
|
||||
-- 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! |
||||
sh = { "shfmt" }, |
||||
}, |
||||
|
||||
-- format_on_save = { |
||||
-- -- These options will be passed to conform.format() |
||||
-- timeout_ms = 500, |
||||
-- lsp_fallback = true, |
||||
-- }, |
||||
-- 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) |
||||
|
Loading…
Reference in new issue