27 lines
438 B
Lua
27 lines
438 B
Lua
return {
|
|
{
|
|
"LazyVim/LazyVim",
|
|
version = false,
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
{
|
|
"folke/noice.nvim",
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
opts.ensure_installed = vim.list_extend(opts.ensure_installed or {}, {
|
|
"vim",
|
|
"vimdoc",
|
|
"html",
|
|
"toml",
|
|
"json",
|
|
"yaml",
|
|
|
|
"regex",
|
|
})
|
|
end,
|
|
},
|
|
}
|