diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-06-15 01:15:25 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-08-19 15:05:33 -0700 |
| commit | 29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa (patch) | |
| tree | d671fe721bba57a26f37a079763fbdf5b6c0895d /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar.gz nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar.bz2 nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar.lz nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar.xz nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.tar.zst nvim-treesitter-29cf3fe42a7bf425e2a9e0f27a06452ec92b0afa.zip | |
parsers: add HLSL
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 7aab74e90..2031e69b5 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -171,6 +171,15 @@ list.glsl = { maintainers = { "@theHamsta" }, } +list.hlsl = { + install_info = { + url = "https://github.com/theHamsta/tree-sitter-hlsl", + files = { "src/parser.c", "src/scanner.cc" }, + generate_requires_npm = true, + }, + maintainers = { "@theHamsta" }, +} + list.dockerfile = { install_info = { url = "https://github.com/camdencheek/tree-sitter-dockerfile", |
