diff options
| -rw-r--r-- | lua/lspconfig/server_configurations/pbls.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/pbls.lua b/lua/lspconfig/server_configurations/pbls.lua new file mode 100644 index 00000000..d1fbe229 --- /dev/null +++ b/lua/lspconfig/server_configurations/pbls.lua @@ -0,0 +1,26 @@ +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")]], + }, + }, +} |
