20 lines
284 B
Lua
20 lines
284 B
Lua
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
opts = {
|
|
ensure_installed = {
|
|
'bash',
|
|
'diff',
|
|
'html',
|
|
'luadoc',
|
|
'markdown',
|
|
'markdown_inline',
|
|
'query',
|
|
'vim',
|
|
'vimdoc',
|
|
},
|
|
},
|
|
}
|