blob: 3a3cf99b49594b6813778c74d06a5457ede0c129 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-- This config is DEPRECATED.
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
--
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
-- They exist only to support Nvim 0.10 or older.
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
return {
default_config = {
cmd = { 'buf', 'beta', 'lsp', '--timeout=0', '--log-format=text' },
filetypes = { 'proto' },
root_dir = require('lspconfig.util').root_pattern('buf.yaml', '.git'),
},
docs = {
description = [[
https://github.com/bufbuild/buf
buf beta lsp included in the cli itself
buf beta lsp is a Protobuf language server compatible with Buf modules and workspaces
]],
},
}
|