30 lines
723 B
Lua
30 lines
723 B
Lua
return {
|
|
'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 = {
|
|
dim_inactive = {
|
|
enabled = true,
|
|
shade = 'dark',
|
|
percentage = 0.15,
|
|
},
|
|
-- transparent_background = true,
|
|
color_overrides = {
|
|
mocha = {
|
|
base = '#000000',
|
|
mantle = '#000000',
|
|
crust = '#000000',
|
|
},
|
|
},
|
|
},
|
|
}
|