9 lines
198 B
Lua
9 lines
198 B
Lua
return {
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000, -- Load before other plugins so colorscheme is set first
|
|
config = function()
|
|
vim.cmd("colorscheme catppuccin")
|
|
end,
|
|
}
|