mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
23 lines
517 B
Lua
23 lines
517 B
Lua
return {
|
|
{ "nvim-treesitter/nvim-treesitter-context", lazy = true },
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
run = ":TSUpdate",
|
|
cmd = {
|
|
"TSInstall",
|
|
"TSUpdate",
|
|
"TSUpdateSync",
|
|
},
|
|
event = {
|
|
"BufReadPre",
|
|
},
|
|
opts = {
|
|
ensure_installed = { "c", "lua", "vim", "vimdoc", "markdown" },
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
},
|
|
config = function(_, opts)
|
|
require("nvim-treesitter.configs").setup(opts)
|
|
end,
|
|
},
|
|
}
|