diff options
Diffstat (limited to 'lsp/protols.lua')
| -rw-r--r-- | lsp/protols.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lsp/protols.lua b/lsp/protols.lua new file mode 100644 index 00000000..67bbb292 --- /dev/null +++ b/lsp/protols.lua @@ -0,0 +1,15 @@ +---@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. +return { + cmd = { 'protols' }, + filetypes = { 'proto' }, + root_markers = { '.git' }, +} |
