dotfiles/.config/nvim/lua/plugins/treesitter.lua
Sergio Laín c2e92f0ef5
♻️ refactor(nvim): a lot of changes to the structure of the config
moved extras, mason and tressitter packages, and some new extras for web dev
2023-11-15 12:46:38 +01:00

23 lines
442 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
---@type TSConfig
---@diagnostic disable-next-line: missing-fields
opts = {
endwise = { enable = true },
ensure_installed = {
"http",
"ini",
},
},
},
{
"RRethy/nvim-treesitter-endwise",
event = "BufRead",
},
{
"chrisgrieser/nvim-puppeteer",
dependencies = "nvim-treesitter/nvim-treesitter",
lazy = false,
},
}