diff --git a/lua/main/init.lua b/lua/main/init.lua index 46834ec..d8ba7cc 100644 --- a/lua/main/init.lua +++ b/lua/main/init.lua @@ -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 diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index 8e7d84e..dee3e66 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -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, }, },