blob: d6dba22a3526b59d5defa480effb2b13bc29bb18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---@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' },
}
|