🗑️ remove(nvim): isort formatter removed in favor of ruff-lsp
ruff can organize the imports
This commit is contained in:
parent
8c900d7e42
commit
cfb63e6124
2 changed files with 1 additions and 20 deletions
|
@ -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",
|
||||
|
@ -94,4 +93,3 @@
|
|||
},
|
||||
"version": 2
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue