51 lines
1.3 KiB
Lua
51 lines
1.3 KiB
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
vim.keymap.set("n", "gd", function()
|
|
vim.lsp.buf.definition()
|
|
end, opts)
|
|
vim.keymap.set("n", "gr", function()
|
|
vim.lsp.buf.references()
|
|
end, opts)
|
|
vim.keymap.set("n", "<C-i>", function()
|
|
vim.diagnostic.open_float()
|
|
end, opts)
|
|
vim.keymap.set("n", "K", function()
|
|
vim.lsp.buf.hover()
|
|
end, opts)
|
|
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, opts)
|
|
vim.keymap.set("n", "<leader>ca", vim.lsp.buf.code_action, opts)
|
|
vim.keymap.set("v", "<leader>ca", vim.lsp.buf.code_action, opts)
|
|
|
|
local python_utils = require("functions.python")
|
|
local python_path = python_utils.get_python_path()
|
|
|
|
vim.lsp.config("ruff", {
|
|
root_markers = { ".git" },
|
|
settings = { interpreter = python_path },
|
|
})
|
|
vim.lsp.enable("ruff")
|
|
vim.lsp.config("basedpyright", {
|
|
root_markers = { ".git" },
|
|
python = { pythonPath = python_path },
|
|
settings = {
|
|
basedpyright = {
|
|
analysis = {
|
|
typeCheckingMode = "standard",
|
|
diagnosticSeverityOverrides = {
|
|
reportUnusedImport = "none",
|
|
reportMissingImports = "none",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
vim.lsp.enable("basedpyright")
|
|
-- vim.lsp.config("bashls", {
|
|
-- cmd = { "bash-language-server", "start" },
|
|
-- filetypes = { "bash", "sh" },
|
|
-- })
|
|
-- vim.lsp.enable("bashls")
|
|
end,
|
|
}
|