dotfiles/.config/nvim/lua/plugins/treesitter.lua
2024-07-18 13:27:24 -04:00

23 lines
444 B
Lua

return {
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function ()
require('nvim-treesitter.configs').setup({
ensure_installed = {
'elixir',
'javascript',
'typescript',
'css',
'markdown',
'lua',
'html',
},
auto_install = true,
highlight = {
enable = true,
},
})
end
},
}