nvim-config/lua/plugins/nvim-treesitter.lua
2024-12-24 23:01:45 -06:00

26 lines
692 B
Lua

-- Code Tree Support / Syntax Highlighting
return {
-- https://github.com/nvim-treesitter/nvim-treesitter
'nvim-treesitter/nvim-treesitter',
event = 'VeryLazy',
dependencies = {
-- https://github.com/nvim-treesitter/nvim-treesitter-textobjects
'nvim-treesitter/nvim-treesitter-textobjects',
},
build = ':TSUpdate',
opts = {
highlight = {
enable = true,
},
indent = { enable = true },
auto_install = true, -- automatically install syntax support when entering new file type buffer
ensure_installed = {
'lua',
},
},
config = function (_, opts)
local configs = require("nvim-treesitter.configs")
configs.setup(opts)
end
}