nvim: [HACK] add isort to python non default formatters

dev-docs
Moritz Böhme 2023-02-26 11:38:55 +01:00
parent 15dfb33122
commit b0c16a0c41
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
1 changed files with 4 additions and 0 deletions

View File

@ -216,6 +216,9 @@ require("formatter").setup({
alejandra = {
require("formatter.filetypes.nix").alejandra,
},
isort = {
require("formatter.filetypes.python").isort,
},
-- Use the special "*" filetype for defining formatter configurations on
-- any filetype
@ -237,6 +240,7 @@ end, {
complete = function()
local languages = {
nix = { "alejandra" },
python = { "isort" },
}
return languages[vim.bo.filetype] or {}
end,