summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 8682d48e..4ac58758 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1050,6 +1050,16 @@ list.m68k = {
filetype = "asm68k",
}
+list.proto = {
+ install_info = {
+ url = "https://github.com/mitchellh/tree-sitter-proto",
+ branch = "main",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@fsouza" },
+ filetype = "proto",
+}
+
local M = {
list = list,
filetype_to_parsername = filetype_to_parsername,