dotfiles/.config/nvim/lua/plugins/treesitter.lua
Sergio Laín 553978feef
feat(Neovim): Plugins Changes
New Plugins and also changed some existing ones
2023-09-24 01:37:30 +02:00

52 lines
1.2 KiB
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
opts.autotag = {
enable = true,
}
opts.endwise = {
enable = true,
}
vim.list_extend(opts.ensure_installed, {
"arduino",
"diff",
"dart",
"css",
"c_sharp",
"comment",
"fish",
"git_config",
"git_rebase",
"gitattributes",
"gitcommit",
"gitignore",
"groovy",
"hjson",
"http",
"ini",
"luadoc",
"make",
"kotlin",
"julia",
"meson",
"perl",
"php",
"prisma",
"r",
"rasi",
"regex",
"ruby",
"sql",
"scss",
"slint",
"svelte",
"todotxt",
"vim",
"vue",
})
end,
},
}