diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-23 01:06:51 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-17 10:53:35 +0100 |
| commit | 3f8917ac738d4e08df158dd7a90ad6d22a294abb (patch) | |
| tree | ced4f8b78f149a7c19b9e04641378d9f5714da58 /lua | |
| parent | 3ee34749bcd8a3bd1293b021f4e7d01c4b3b650c (diff) | |
parsers: add hack parser
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 9b6cb3ba..105463ff 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -871,6 +871,14 @@ list.foam = { experimental = true, } +list.hack = { + install_info = { + url = "https://github.com/slackhq/tree-sitter-hack", + branch = "main", + files = { "src/parser.c", "src/scanner.cc" }, + }, +} + local M = { list = list, } |
