38 lines
641 B
Lua
38 lines
641 B
Lua
vim.o.background = "dark"
|
|
|
|
return {
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
|
|
{
|
|
"catppuccin",
|
|
enabled = true,
|
|
opts = {
|
|
color_overrides = {
|
|
mocha = {
|
|
base = "#000000",
|
|
mantle = "#000000",
|
|
crust = "#000000",
|
|
surface0 = "#953E13",
|
|
},
|
|
latte = {
|
|
base = "#f6f7f8",
|
|
},
|
|
},
|
|
dim_inactive = {
|
|
enabled = true,
|
|
shade = "light",
|
|
percentage = 0.3,
|
|
},
|
|
},
|
|
},
|
|
|
|
{ "folke/tokyonight.nvim", enabled = false },
|
|
|
|
{ "bluz71/vim-moonfly-colors", enabled = false },
|
|
}
|