diff options
| author | Tristan Knight <tris203@gmail.com> | 2025-02-01 19:06:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-01 20:06:26 +0100 |
| commit | 39bf51ff68800a78156258fd3beca81a87895103 (patch) | |
| tree | dcbd679e375be57368e2771faa7b370cf25b693b /lua | |
| parent | bot(lockfile): update bash, desktop, haskell, julia, nix, objc, typst (diff) | |
| download | nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar.gz nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar.bz2 nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar.lz nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar.xz nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.tar.zst nvim-treesitter-39bf51ff68800a78156258fd3beca81a87895103.zip | |
feat(razor): add parser and queries (#7545)
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 ca2fb11b0..986f2a972 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1861,6 +1861,14 @@ list.rasi = { maintainers = { "@Fymyte" }, } +list.razor = { + install_info = { + url = "https://github.com/tris203/tree-sitter-razor", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@tris203" }, +} + list.rbs = { install_info = { url = "https://github.com/joker1007/tree-sitter-rbs", |
