nixos-configs/modules/editor/vim/lua/plugins/treesitter.lua

12 lines
240 B
Lua
Raw Normal View History

2024-07-16 02:02:33 +02:00
return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
auto_install = false,
2025-10-03 17:03:13 +02:00
sync_install = false,
2024-07-16 02:02:33 +02:00
ensure_installed = {},
parser_install_dir = vim.fs.joinpath(vim.fn.stdpath('data'), 'site'),
},
},
}