mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-11 01:55:48 +08:00
27 lines
531 B
Lua
27 lines
531 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'pbls' },
|
||
|
filetypes = { 'proto' },
|
||
|
root_dir = util.root_pattern('.pbls.toml', '.git'),
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
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
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[root_pattern(".pbls.toml", ".git")]],
|
||
|
},
|
||
|
},
|
||
|
}
|