31 lines
726 B
Lua
31 lines
726 B
Lua
return {
|
|
{
|
|
"bluz71/vim-moonfly-colors",
|
|
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
|
|
},
|
|
{
|
|
"miikanissi/modus-themes.nvim",
|
|
config = function()
|
|
require("modus-themes").setup({
|
|
variant = "tinted",
|
|
transparent = true,
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"f-person/auto-dark-mode.nvim",
|
|
opts = {
|
|
update_interval = 1000,
|
|
set_dark_mode = function()
|
|
vim.api.nvim_set_option_value("background", "dark", {})
|
|
vim.cmd("colorscheme moonfly")
|
|
end,
|
|
set_light_mode = function()
|
|
vim.api.nvim_set_option_value("background", "light", {})
|
|
vim.cmd("colorscheme modus")
|
|
end,
|
|
},
|
|
},
|
|
}
|