24 lines
611 B
Lua
24 lines
611 B
Lua
'catppuccin/nvim',
|
|
name = 'catppuccin',
|
|
priority = 1000,
|
|
init = function()
|
|
-- Load the colorscheme here.
|
|
-- Like many other themes, this one has different styles, and you could load
|
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
|
vim.cmd.colorscheme 'catppuccin'
|
|
|
|
-- You can configure highlights by doing something like:
|
|
vim.cmd.hi 'Comment gui=none'
|
|
end,
|
|
opts = {
|
|
term_colors = true,
|
|
--[[ color_overrides = {
|
|
mocha = {
|
|
base = '#000000',
|
|
mantle = '#000000',
|
|
crust = '#000000',
|
|
},
|
|
}, ]]
|
|
},
|
|
}
|