Latest config changes

This commit is contained in:
Alex Selimov 2026-07-17 10:54:11 -04:00
parent 846e47b931
commit a3c3abdf89
12 changed files with 110 additions and 10 deletions

View file

@ -10,9 +10,6 @@ return {
lsp_fallback = true,
},
formatters = {
black = {
prepend_args = { "--line-length", "100" },
},
beautysh = {
prepend_args = { "--indent-size", "2" },
},
@ -25,15 +22,16 @@ return {
},
formatters_by_ft = {
lua = { "stylua" },
python = { "black" },
python = { "ruff_format" },
cpp = { "clang-format" },
c = { "clang-format" },
sh = { "beautysh" },
tex = { "latexindent" },
java = { "google-java-format" },
javascript = { "prettier" },
typescript = { "prettier" },
typescriptreact = { "prettier" },
typescript = { "deno_fmt" },
typescriptreact = { "deno_fmt" },
svelte = { "deno_fmt" },
json = { "prettier" },
go = { "golines" },
},