aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorAlexandre A. Muller <muller@outlook.com>2022-01-08 01:26:33 +0000
committerGitHub <noreply@github.com>2022-01-08 01:26:33 +0000
commita7c0c1764b0b583d0597108dd7d48bc5c0f98c81 (patch)
tree906ce9072e941297d86b307f35a7ae85fc9eda2e /lua
parenthighlights(make): add all special targets (diff)
downloadnvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar.gz
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar.bz2
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar.lz
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar.xz
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.tar.zst
nvim-treesitter-a7c0c1764b0b583d0597108dd7d48bc5c0f98c81.zip
Add ninja parser (#2217)
* Add ninja parser * Add branch main * No need for ftdetect
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 9299874f2..d71655f6c 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -532,6 +532,15 @@ list.yang = {
filetype = "yang",
}
+list.ninja = {
+ install_info = {
+ url = "https://github.com/alemuller/tree-sitter-ninja",
+ files = { "src/parser.c" },
+ branch = "main",
+ },
+ maintainers = { "@alemuller" },
+}
+
list.nix = {
install_info = {
url = "https://github.com/cstrahan/tree-sitter-nix",