dotfiles/home/private_dot_config/nvim/lua/plugins/language/python.lua

40 lines
1 KiB
Lua
Raw Normal View History

2023-11-30 14:25:23 -06:00
return {
2023-12-17 23:26:30 -06:00
require("util").setup_lang({ treesitter = { "python", "toml" }, mason = { "ruff", "ruff-lsp" } }),
2023-11-30 14:25:23 -06:00
-- modified from https://www.lazyvim.org/extras/lang/python#nvim-lspconfig
{
"neovim/nvim-lspconfig",
opts = {
2023-12-11 15:45:15 -06:00
-- autoformat = false,
2023-11-30 14:25:23 -06:00
servers = {
ruff_lsp = {
keys = {
{
"<leader>co",
function()
vim.lsp.buf.code_action({
apply = true,
context = {
only = { "source.organizeImports" },
diagnostics = {},
},
})
end,
desc = "Organize Imports",
},
},
},
},
setup = {
ruff_lsp = function()
require("lazyvim.util").lsp.on_attach(function(client, _)
if client.name == "ruff_lsp" then
-- Disable hover in favor of Pyright
client.server_capabilities.hoverProvider = false
end
end)
end,
},
},
},
}