Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/nvchad/.config/nvim/lua/custom/configs/conform.lua

37 lines
833 B

local options = {
10 months ago
lsp_fallback = true,
10 months ago
formatters_by_ft = {
-- Divine Intellect Languages
lua = { "stylua" },
10 months ago
-- Web Dev shit
javascript = { "prettier" },
typescript = { "prettier" },
javascriptreact = { "prettier" },
typescriptreact = { "prettier" },
css = { "prettier" },
scss = { "prettier" },
html = { "prettier" },
10 months ago
-- Data Science & AI stuff
python = { "black" },
10 months ago
sh = { "shfmt" },
-- Joke langs
haskell = { "stylish-haskell" }
10 months ago
},
10 months ago
-- 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)