mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-06 17:16:09 +02:00
88 lines
2.3 KiB
Lua
88 lines
2.3 KiB
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
local root_files = {
|
|
'pyproject.toml',
|
|
'setup.py',
|
|
'setup.cfg',
|
|
'requirements.txt',
|
|
'Pipfile',
|
|
'pyrightconfig.json',
|
|
'.git',
|
|
}
|
|
|
|
local function organize_imports()
|
|
local params = {
|
|
command = 'basedpyright.organizeimports',
|
|
arguments = { vim.uri_from_bufnr(0) },
|
|
}
|
|
|
|
local clients = vim.lsp.get_clients {
|
|
bufnr = vim.api.nvim_get_current_buf(),
|
|
name = 'basedpyright',
|
|
}
|
|
for _, client in ipairs(clients) do
|
|
client.request('workspace/executeCommand', params, nil, 0)
|
|
end
|
|
end
|
|
|
|
local function set_python_path(path)
|
|
local clients = vim.lsp.get_clients {
|
|
bufnr = vim.api.nvim_get_current_buf(),
|
|
name = 'basedpyright',
|
|
}
|
|
for _, client in ipairs(clients) do
|
|
if client.settings then
|
|
client.settings.python = vim.tbl_deep_extend('force', client.settings.python or {}, { pythonPath = path })
|
|
else
|
|
client.config.settings = vim.tbl_deep_extend('force', client.config.settings, { python = { pythonPath = path } })
|
|
end
|
|
client.notify('workspace/didChangeConfiguration', { settings = nil })
|
|
end
|
|
end
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'basedpyright-langserver', '--stdio' },
|
|
filetypes = { 'python' },
|
|
root_dir = function(fname)
|
|
return util.root_pattern(unpack(root_files))(fname)
|
|
end,
|
|
single_file_support = true,
|
|
settings = {
|
|
basedpyright = {
|
|
analysis = {
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
diagnosticMode = 'openFilesOnly',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
commands = {
|
|
PyrightOrganizeImports = {
|
|
organize_imports,
|
|
description = 'Organize Imports',
|
|
},
|
|
PyrightSetPythonPath = {
|
|
set_python_path,
|
|
description = 'Reconfigure basedpyright with the provided python path',
|
|
nargs = 1,
|
|
complete = 'file',
|
|
},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://detachhead.github.io/basedpyright
|
|
|
|
`basedpyright`, a static type checker and language server for python
|
|
]],
|
|
},
|
|
}
|