mirror of https://github.com/E-Almqvist/dotfiles
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.
37 lines
833 B
37 lines
833 B
10 months ago
|
local options = {
|
||
10 months ago
|
lsp_fallback = true,
|
||
10 months ago
|
|
||
10 months ago
|
formatters_by_ft = {
|
||
|
-- Divine Intellect Languages
|
||
|
lua = { "stylua" },
|
||
10 months ago
|
|
||
10 months ago
|
-- Web Dev shit
|
||
|
javascript = { "prettier" },
|
||
|
typescript = { "prettier" },
|
||
|
javascriptreact = { "prettier" },
|
||
|
typescriptreact = { "prettier" },
|
||
|
css = { "prettier" },
|
||
|
scss = { "prettier" },
|
||
|
html = { "prettier" },
|
||
10 months ago
|
|
||
10 months ago
|
-- Data Science & AI stuff
|
||
|
python = { "black" },
|
||
10 months ago
|
|
||
10 months ago
|
sh = { "shfmt" },
|
||
10 months ago
|
|
||
|
-- Joke langs
|
||
|
haskell = { "stylish-haskell" }
|
||
10 months ago
|
},
|
||
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,
|
||
|
-- },
|
||
10 months ago
|
}
|
||
|
|
||
|
require("conform").setup(options)
|