1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 07:50:05 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/starpls.lua
2024-05-21 12:31:14 +08:00

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.
]],
},
}