nvim_config/lua/plugins/treesitter.lua
2026-05-19 11:50:55 +02:00

24 lines
741 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
build = ":TSUpdate",
config = function ()
local treesitter = require("nvim-treesitter")
treesitter.setup()
treesitter.install { "lua", "vim", "yaml" }
vim.api.nvim_create_autocmd('FileType', {
pattern = { "lua", "vim", "yaml" },
callback = function()
-- syntax highlighting, provided by Neovim
vim.treesitter.start()
-- folds, provided by Neovim (I don't like folds)
-- vim.wo.foldexpr = 'v:lua.vim.treesitter.foldexpr()'
-- vim.wo.foldmethod = 'expr'
-- indentation, provided by nvim-treesitter
vim.bo.indentexpr = "v:lua.require'nvim-treesitter'.indentexpr()"
end,
})
end
}