mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 21:57:30 -07:00
16 lines
333 B
Lua
16 lines
333 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "macchiato",
|
|
transparent_background = false,
|
|
float = { transparent = false, solid = true },
|
|
})
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
},
|
|
}
|