summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorOleksii Demennikov <odemennikov@lohika.com>2022-04-01 21:27:10 +0300
committerStephan Seitz <stephan.seitz@fau.de>2022-04-03 14:47:06 +0200
commit00197398bd5f881b3dbb90b78c28ce2b58665d83 (patch)
tree7dd34cd0ef3aae23a82255deea3627bdae2d9127 /lua
parent0741d2282b0e3f039f0bb95c4cded7338dfd3af5 (diff)
Added the initial version for the support of rego language
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 4784c476..fad77791 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -49,6 +49,15 @@ list.javascript = {
maintainers = { "@steelsojka" },
}
+list.rego = {
+ install_info = {
+ url = "https://github.com/FallenAngel97/tree-sitter-rego",
+ files = { "src/parser.c" },
+ },
+ maintainers = { '@FallenAngel97' },
+ filetype = 'rego',
+}
+
list.c = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-c",