dotfiles/home/private_dot_config/nvim/lua/plugins/builtins.lua
2024-11-20 13:12:48 -06:00

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,
},
}