mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
20 lines
443 B
Lua
20 lines
443 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", "markdown_inline" },
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
},
|
|
},
|
|
}
|