diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-09 22:48:57 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-23 16:27:25 +0100 |
| commit | bb33aea03cd65e62e0b5cdd0b1077c09b88dce1b (patch) | |
| tree | 88be817c63ac10956034fa3e345be5e90dd25c38 /lua/nvim-treesitter/parsers.lua | |
| parent | 9419107d86c02391233097bb15e163e094e8faa8 (diff) | |
Set CXX standard per parser and fix Norg
Diffstat (limited to 'lua/nvim-treesitter/parsers.lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index bfa4ccc8..cb995585 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -893,12 +893,13 @@ list.hack = { list.norg = { install_info = { - url = "https://github.com/vhyrro/tree-sitter-norg", + url = "https://github.com/nvim-neorg/tree-sitter-norg", branch = "main", files = { "src/parser.c", "src/scanner.cc" }, use_makefile = true, + cxx_standard = "c++14", }, - maintainers = { "@JoeyGrajciar", "@vhyrro" }, + maintainers = { "@JoeyGrajciar", "@vhyrro", "@mrossinek" }, } local M = { |
