Just kidding, here's another color scheme

This commit is contained in:
2026-01-10 20:07:28 -05:00
parent 978d702ee6
commit 5bdacac3b1
2 changed files with 20 additions and 8 deletions

View File

@@ -1,9 +1,20 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
return { "catppuccin/nvim", name = "catppuccin", priority = 1000,
config = function()
vim.cmd[[colorscheme tokyonight-storm]]
require("catppuccin").setup({
flavour = "mocha",
background = {
light = "latte",
dark = "mocha",
},
transparent_background = false, -- disables setting the background color.
float = {
transparent = true, -- enable transparent floating windows
},
auto_integrations = true,
})
-- setup must be called before loading
vim.cmd.colorscheme "catppuccin"
end
}

View File

@@ -0,0 +1 @@
return {"HiPhish/rainbow-delimiters.nvim"}