mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:50:05 +08:00
25 lines
488 B
Lua
25 lines
488 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'salt_lsp_server' },
|
||
|
filetypes = { 'sls' },
|
||
|
root_dir = util.find_git_ancestor,
|
||
|
single_file_support = true,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
Language server for Salt configuration files.
|
||
|
https://github.com/dcermak/salt-lsp
|
||
|
|
||
|
The language server can be installed with `pip`:
|
||
|
```sh
|
||
|
pip install salt-lsp
|
||
|
```
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[root_pattern('.git')]],
|
||
|
},
|
||
|
},
|
||
|
}
|