1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-11 01:35:46 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/bzl.lua

23 lines
519 B
Lua
Raw Normal View History

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'bzl', 'lsp', 'serve' },
filetypes = { 'bzl' },
-- https://docs.bazel.build/versions/5.4.1/build-ref.html#workspace
root_dir = util.root_pattern('WORKSPACE', 'WORKSPACE.bazel'),
},
docs = {
description = [[
https://bzl.io/
https://docs.stack.build/docs/cli/installation
https://docs.stack.build/docs/vscode/starlark-language-server
]],
default_config = {
root_dir = [[root_pattern(".git")]],
},
},
}