1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-11-29 17:19:44 +01:00

nvim: added latexindent with 2 space indent

This commit is contained in:
2024-03-05 14:44:15 +01:00
parent f789c139cb
commit abed395a87
4 changed files with 45 additions and 33 deletions

View File

@@ -13,6 +13,8 @@ return {
require("null-ls").builtins.formatting.black,
-- markdown
require("null-ls").builtins.formatting.mdformat,
-- latex
require("null-ls").builtins.formatting.latexindent,
}
})
end
@@ -22,7 +24,10 @@ return {
opts = {
automatic_installation = true,
ensure_installed = {
"isort", "black", "mdformat"
"black",
"isort",
"latexindent",
"mdformat",
}
}
}