16 lines
379 B
Lua
16 lines
379 B
Lua
return function(use)
|
|
use {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
run = function()
|
|
require 'nvim-treesitter.install'.update {
|
|
with_sync = true
|
|
}
|
|
end,
|
|
config = function()
|
|
require 'nvim-treesitter.configs'.setup {
|
|
highlight = { enable = true }
|
|
}
|
|
end,
|
|
}
|
|
end
|