mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 14:00:06 +08:00
1c4627c212
ref: 9bda20fb96
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.
|
|
]],
|
|
},
|
|
}
|