nvim/lua/plugins/theme_catppuccin.lua
RingOfStorms (Joshua Bell) 4e27134c51 cappuccin theme, tmux changes
2024-01-29 03:22:33 -06:00

16 lines
361 B
Lua

return {
"catppuccin/nvim",
opts = {
-- flavour = "frappe", -- latte, frappe, macchiato, mocha (default)
-- color_overrides = {
-- mocha = {
-- -- base = "#0e0e14",
-- -- mantle = "#000000",
-- -- crust = "#000000",
-- },
-- },
},
config = function(_, opts)
require("catppuccin").setup(opts)
end,
}