1
0
Files
dotfiles/pkgs/neovim/lua/plugins/treesitter.lua
2025-11-21 17:11:38 +01:00

20 lines
352 B
Lua

local common = require('BluePlum.lazy')
return {
{
'nvim-treesitter/nvim-treesitter',
branch = 'main',
event = common.event.VeryLazy,
build = ':TSUpdate',
opts = {
ensure_installed = { 'lua', 'markdown', 'typescript', 'javascript', 'rust', 'json', 'toml' },
highlight = {
enable = true,
},
auto_install = true,
},
},
}