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

nvim: change pythons style to be more campact

This commit is contained in:
2024-03-06 17:14:39 +01:00
parent 7931d193b6
commit 4bfc54bcc1
3 changed files with 19 additions and 6 deletions

View File

@@ -15,8 +15,8 @@ return {
-- markdown
require("null-ls").builtins.formatting.mdformat,
-- python
require("null-ls").builtins.formatting.black,
require("null-ls").builtins.formatting.isort,
require("null-ls").builtins.formatting.yapf,
}
})
end
@@ -26,11 +26,15 @@ return {
opts = {
automatic_installation = true,
ensure_installed = {
"black",
"isort",
-- latex
"latexindent",
"mdformat",
-- lua
"stylua",
-- markdown
"mdformat",
-- python
"isort",
"yapf",
}
}
}