From bdc798ba641862bad772567192787cb0bbf3db31 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 21 Jul 2025 16:58:50 +0100 Subject: [PATCH] feat(lsp): add pbkit.lua file for Protocol Buffers Language Server Protocol integration --- lua/absolute/lsp/pbkit.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/absolute/lsp/pbkit.lua diff --git a/lua/absolute/lsp/pbkit.lua b/lua/absolute/lsp/pbkit.lua new file mode 100644 index 0000000..beb1132 --- /dev/null +++ b/lua/absolute/lsp/pbkit.lua @@ -0,0 +1,8 @@ +return { + default_config = { + cmd = { "pb", "lsp" }, + filetypes = { "proto" }, + single_file_support = true, + root_dir = require("lspconfig.util").root_pattern(".git"), + }, +}