19 lines
385 B
Lua
19 lines
385 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
lazy = false,
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
vim.api.nvim_create_autocmd("User", {
|
|
pattern = "TSUpdate",
|
|
callback = function()
|
|
require("nvim-treesitter.parsers").norg = {
|
|
install_info = {
|
|
url = "https://github.com/nvim-neorg/tree-sitter-norg",
|
|
revision = "HEAD",
|
|
},
|
|
}
|
|
end,
|
|
})
|
|
end,
|
|
}
|