mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
15 lines
360 B
Lua
15 lines
360 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/thought-machine/please
|
|
---
|
|
--- High-performance extensible build system for reproducible multi-language builds.
|
|
---
|
|
--- The `plz` binary will automatically install the LSP for you on first run
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'plz', 'tool', 'lps' },
|
|
filetypes = { 'bzl' },
|
|
root_markers = { '.plzconfig' },
|
|
}
|