We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9baca6a commit 93e4383Copy full SHA for 93e4383
.codespellignorewords
@@ -1,3 +1,4 @@
1
als
2
edn
3
esy
4
+protols
lua/lspconfig/server_configurations/protols.lua
@@ -0,0 +1,22 @@
+local util = require 'lspconfig.util'
+
+return {
+ default_config = {
5
+ cmd = { 'protols' },
6
+ filetypes = { 'proto' },
7
+ single_file_support = true,
8
+ root_dir = util.find_git_ancestor,
9
+ },
10
+ docs = {
11
+ description = [[
12
+https://github.com/coder3101/protols
13
14
+`protols` can be installed via `cargo`:
15
+```sh
16
+cargo install protols
17
+```
18
19
+A Language Server for proto3 files. It uses tree-sitter and runs in single file mode.
20
+]],
21
22
+}
0 commit comments