nvim-configs/lua/plugin/treesitter.lua

17 lines
342 B
Lua

local M = {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate', -- parsers must be kept up to date with the plugin
lazy = false, -- enable highlighting instantly
opts = {
ensure_installed = {
'bash'
},
sync_install = true,
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
},
}
return M