mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
20 lines
397 B
Lua
20 lines
397 B
Lua
---@brief
|
|
---
|
|
--- https://git.sr.ht/~rrc/pbls
|
|
---
|
|
--- Prerequisites: Ensure protoc is on your $PATH.
|
|
---
|
|
--- `pbls` can be installed via `cargo install`:
|
|
--- ```sh
|
|
--- cargo install --git https://git.sr.ht/~rrc/pbls
|
|
--- ```
|
|
---
|
|
--- pbls is a Language Server for protobuf
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'pbls' },
|
|
filetypes = { 'proto' },
|
|
root_markers = { '.pbls.toml', '.git' },
|
|
}
|