mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 02:41:26 +01:00
13 lines
292 B
Lua
13 lines
292 B
Lua
local package = require('core.pack').package
|
|
local conf = require('modules.editor.config')
|
|
|
|
package({
|
|
'nvim-treesitter/nvim-treesitter',
|
|
event = 'BufRead',
|
|
run = ':TSUpdate',
|
|
config = conf.nvim_treesitter,
|
|
dependencies = {
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
},
|
|
})
|