diff options
| author | Stephan Seitz <sseitz@nvidia.com> | 2021-06-09 18:47:31 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.lauf@yahoo.de> | 2021-06-14 07:30:51 +0200 |
| commit | 8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b (patch) | |
| tree | 8f4daf3e0e96296b8d98af6a86d723dda9b05b32 /lua | |
| parent | fixed typo (#1386) (diff) | |
| download | nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar.gz nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar.bz2 nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar.lz nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar.xz nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.tar.zst nvim-treesitter-8eb37c4409b2c9c0dcef6f8bdc80f31d7085cd9b.zip | |
parsers: add tree-sitter-cuda
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 9e47e0b6f..c27e1bdb8 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -70,7 +70,14 @@ list.cpp = { files = { "src/parser.c", "src/scanner.cc" }, generate_requires_npm = true, }, - used_by = { "cuda" }, + maintainers = {"@theHamsta"}, +} + +list.cuda = { + install_info = { + url = "https://github.com/theHamsta/tree-sitter-cuda", + files = {"src/parser.c", "src/scanner.cc"}, + }, maintainers = {"@theHamsta"}, } |
