blob: 87dc08407ef37a71d4acc5627b422355a4756476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@brief
---
--- https://github.com/coder3101/protols
---
--- `protols` can be installed via `cargo`:
--- ```sh
--- cargo install protols
--- ```
---
--- A Language Server for proto3 files. It uses tree-sitter and runs in single file mode.
---@type vim.lsp.Config
return {
cmd = { 'protols' },
filetypes = { 'proto' },
root_markers = { '.git' },
}
|