mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:50:05 +08:00
17 lines
407 B
Lua
17 lines
407 B
Lua
|
local util = require 'lspconfig/util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'starpls' },
|
||
|
filetypes = { 'bzl' },
|
||
|
root_dir = util.root_pattern('WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel'),
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/withered-magic/starpls
|
||
|
|
||
|
`starpls` is an LSP implementation for Starlark. Installation instructions can be found in the project's README.
|
||
|
]],
|
||
|
},
|
||
|
}
|