dotfiles/nvim/plugin/treesitter.lua

17 lines
430 B
Lua
Raw Normal View History

local ok, parser_configs = pcall(require, 'nvim-treesitter.parsers')
if not ok then return end
local parser_configs = parser_configs.get_parser_configs()
2021-12-13 17:12:11 +00:00
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" }
}