11 lines
177 B
Lua
11 lines
177 B
Lua
return {
|
|
"catppuccin/nvim",
|
|
name = "theme",
|
|
lazy = false,
|
|
priority = 999,
|
|
config = function()
|
|
vim.cmd("colorscheme catppuccin")
|
|
require("catppuccin").setup({})
|
|
end,
|
|
}
|