diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2020-07-15 16:03:21 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | 2020-07-15 16:26:34 +0200 |
| commit | f5f5e3ec51c5f47f394e04694eb23f20fd914200 (patch) | |
| tree | c8421d7688522a2095cde2adcfb068a068484e4d /lua | |
| parent | ec2f4df1d8dad52d41a457513821907024c631b5 (diff) | |
Use C++ parser for "cuda" filetype
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 7fa09df9..9bab2e09 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -21,7 +21,8 @@ list.cpp = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-cpp", files = { "src/parser.c", "src/scanner.cc" } - } + }, + used_by = { "cuda" }, } list.rust = { |
