aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/conform.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/nvim/.config/nvim/lua/plugins/conform.lua b/nvim/.config/nvim/lua/plugins/conform.lua
index 315a023..2a1bd8d 100644
--- a/nvim/.config/nvim/lua/plugins/conform.lua
+++ b/nvim/.config/nvim/lua/plugins/conform.lua
@@ -7,20 +7,21 @@ local M = {
format_on_save = false,
format_after_save = false,
formatters_by_ft = {
- lua = { "stylua" },
css = { "prettier" },
html = { "prettier" },
htmldjango = { "djlint" },
- tex = { "latexindent" },
- plaintex = { "latexindent" },
+ json = { "deno_fmt" },
+ lua = { "stylua" },
markdown = { "mdformat", "markdownlint" },
nginx = { "nginxbeautifier" },
+ plaintex = { "latexindent" },
python = { "black", "usort" },
- -- HACK: unable to get typst-lsp to do formatting
- typst = { "typstfmt" },
sass = { "prettier" },
scss = { "prettier" },
sh = { "shfmt" },
+ tex = { "latexindent" },
+ -- HACK: unable to get typst-lsp to do formatting
+ typst = { "typstfmt" },
["*"] = { "injected", "trim_whitespace", "trim_newlines" },
},
formatters = {