[nvim] Add neorg related stuff

This commit is contained in:
Alyxia Sother 2021-12-13 18:12:11 +01:00
parent cd84490790
commit 238e3b3ef4
No known key found for this signature in database
GPG key ID: 355968D14144B739
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,13 @@
local parser_configs = require('nvim-treesitter.parsers').get_parser_configs()
parser_configs.norg = {
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg",
files = { "src/parser.c", "src/scanner.cc" },
branch = "main"
},
}
require('nvim-treesitter.configs').setup {
ensure_installed = { "norg" }
}