Switch to modus for the light theme

This commit is contained in:
baldeau 2024-09-16 12:40:15 +02:00
parent e61e1a2a0e
commit 2b93e07817
2 changed files with 2 additions and 13 deletions

View File

@ -2,12 +2,6 @@
vim.g.moonflyTransparent = true
-- vim.cmd([[colorscheme moonfly]])
require("cyberdream").setup({
theme = {
variant = "light",
},
})
vim.opt["tabstop"] = 4
vim.opt["shiftwidth"] = 4

View File

@ -4,11 +4,7 @@ return {
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
},
{
"scottmckendry/cyberdream.nvim",
lazy = false,
priority = 1000,
},
{ "miikanissi/modus-themes.nvim" },
{
"f-person/auto-dark-mode.nvim",
opts = {
@ -18,9 +14,8 @@ return {
vim.cmd("colorscheme moonfly")
end,
set_light_mode = function()
vim.o.background = "light"
vim.api.nvim_set_option_value("background", "light", {})
vim.cmd("colorscheme cyberdream")
vim.cmd("colorscheme modus")
end,
},
},