dotfiles/dot-config/nvim/lua/plugins/treesitter.lua

24 lines
444 B
Lua
Raw Permalink Normal View History

2024-07-18 12:00:39 -04:00
return {
2024-07-18 13:27:24 -04:00
{
'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
},
2024-07-18 12:00:39 -04:00
}