15 lines
345 B
Lua
15 lines
345 B
Lua
|
|
return {
|
||
|
|
'nvim-treesitter/nvim-treesitter',
|
||
|
|
build = ':TSUpdate',
|
||
|
|
config = function()
|
||
|
|
local configs = require('nvim-treesitter.configs')
|
||
|
|
|
||
|
|
configs.setup {
|
||
|
|
ensure_installed = { 'c', 'cpp', 'lua', 'vimdoc', 'luadoc', 'vim', 'markdown' },
|
||
|
|
sync_install = false,
|
||
|
|
highlight = { enable = true },
|
||
|
|
indent = { enable = false }
|
||
|
|
}
|
||
|
|
end
|
||
|
|
}
|