mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
29 lines
583 B
Lua
Vendored
29 lines
583 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
local root_files = {
|
|
'pyproject.toml',
|
|
'setup.py',
|
|
'setup.cfg',
|
|
'requirements.txt',
|
|
'Pipfile',
|
|
}
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'jedi-language-server' },
|
|
filetypes = { 'python' },
|
|
root_dir = util.root_pattern(unpack(root_files)),
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/pappasam/jedi-language-server
|
|
|
|
`jedi-language-server`, a language server for Python, built on top of jedi
|
|
]],
|
|
default_config = {
|
|
root_dir = "vim's starting directory",
|
|
},
|
|
},
|
|
}
|