Add more colorscheme and ability to switch

This commit is contained in:
2026-01-14 21:45:20 +01:00
parent 77050a542f
commit cf1e2e38ed
6 changed files with 82 additions and 28 deletions

View File

@ -0,0 +1,22 @@
return {
-- Tokyo Night
{
"folke/tokyonight.nvim",
lazy = true,
},
-- Catppuccin
{
"catppuccin/nvim",
name = "catppuccin",
lazy = false, -- loads immediately
priority = 1000, -- ensure it loads before other plugins
config = function()
vim.cmd.colorscheme("catppuccin")
end,
},
-- Gruvbox
{
"ellisonleao/gruvbox.nvim",
lazy = true,
},
}