🗑️ remove(nvim): isort formatter removed in favor of ruff-lsp

ruff can organize the imports
This commit is contained in:
Sergio Laín 2024-01-09 13:11:47 +01:00
parent 8c900d7e42
commit cfb63e6124
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 1 additions and 20 deletions

View file

@ -43,7 +43,6 @@
"plugins.extras.editor.telescope.undotree",
"plugins.extras.editor.telescope.zoxide",
"plugins.extras.editor.terminal.floaterm",
"plugins.extras.formatting.isort",
"plugins.extras.formatting.prettier-extended",
"plugins.extras.formatting.rustfmt",
"plugins.extras.formatting.trim_newlines",
@ -93,5 +92,4 @@
"NEWS.md": "2123"
},
"version": 2
}
}

View file

@ -1,17 +0,0 @@
return {
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "isort" })
end,
},
{
"stevearc/conform.nvim",
opts = function(_, opts)
opts.formatters_by_ft.python = opts.formatters_by_ft.python or {}
table.insert(opts.formatters_by_ft.python, "isort")
return opts
end,
},
}