mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
11 lines
242 B
Lua
11 lines
242 B
Lua
return {
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
|
})
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
}
|