Move lsp config to local file structure
This commit is contained in:
parent
e5c3bb2492
commit
20801272fc
383 changed files with 11829 additions and 114 deletions
19
.config/nvim/lsp/pbls.lua
Normal file
19
.config/nvim/lsp/pbls.lua
Normal file
|
|
@ -0,0 +1,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' },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue