mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
20 lines
345 B
Lua
20 lines
345 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "latte", -- other options: "mocha", "frappe", "macchiato"
|
|
})
|
|
vim.cmd.colorscheme("catppuccin-latte")
|
|
end,
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin-latte",
|
|
},
|
|
},
|
|
}
|