diff options
| author | Willem-J-an <51120533+Willem-J-an@users.noreply.github.com> | 2023-11-08 10:11:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-08 09:11:19 +0000 |
| commit | 629cae1f0fd0c18b4b8b203299d8b15378c6b860 (patch) | |
| tree | 82664e3d0759953c6291f2550511dbc2661b7654 /lua | |
| parent | Update parsers: janet_simple, wing (diff) | |
| download | nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar.gz nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar.bz2 nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar.lz nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar.xz nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.tar.zst nvim-treesitter-629cae1f0fd0c18b4b8b203299d8b15378c6b860.zip | |
feat(kusto): add kusto parser and highlights (#5632)
* feat(kusto): add kusto parser and highlights
* feat(kusto): improve highlights
* Update queries/kusto/highlights.scm
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
* chore(kusto): remove unneeded filetype
---------
Co-authored-by: Willem Jan Noort <noortw01@heiway.net>
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
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 17e59046a..9c4ac31f9 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -968,6 +968,14 @@ list.kotlin = { maintainers = { "@SalBakraa" }, } +list.kusto = { + install_info = { + url = "https://github.com/Willem-J-an/tree-sitter-kusto", + files = { "src/parser.c" }, + }, + maintainers = { "@Willem-J-an" }, +} + list.lalrpop = { install_info = { url = "https://github.com/traxys/tree-sitter-lalrpop", |
