aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorHimujjal <himu@tuta.io>2021-03-23 06:18:43 +0530
committerStephan Seitz <stephan.lauf@yahoo.de>2021-03-23 12:36:34 +0100
commit597ec69378c230bd7b4d3f55d552eb51f4f2afcd (patch)
treee87dcf45a0fe88bdd370984f5bf47ee3c3739791 /lua
parentUpdate lockfile.json (diff)
downloadnvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar.gz
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar.bz2
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar.lz
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar.xz
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.tar.zst
nvim-treesitter-597ec69378c230bd7b4d3f55d552eb51f4f2afcd.zip
Added Zig grammar
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index e581eb089..efbe1f879 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -524,6 +524,15 @@ list.bibtex = {
filetype = 'bib',
}
+list.zig = {
+ install_info = {
+ url = "https://github.com/Himujjal/tree-sitter-zig",
+ files = { "src/parser.c" }
+ },
+ filetype = "zig",
+ maintainers = { "@Himujjal" }
+}
+
local M = {
list = list
}