Files
nvim/lua/config/plugins/syntax.lua
T
2022-08-02 21:03:40 -04:00

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