13 lines
265 B
Lua
13 lines
265 B
Lua
-- Use this file for any colorschemes that you wish to install.
|
|
-- Comes with catppuccin by default.
|
|
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
config = function()
|
|
vim.cmd([[colorscheme catppuccin]])
|
|
end,
|
|
},
|
|
}
|