2024-09-12 21:43:42 +02:00
|
|
|
return {
|
|
|
|
{
|
2024-09-14 00:55:51 +02:00
|
|
|
"bluz71/vim-moonfly-colors",
|
2024-09-12 21:43:42 +02:00
|
|
|
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
|
|
|
|
},
|
2024-09-20 13:17:50 +02:00
|
|
|
{
|
|
|
|
"miikanissi/modus-themes.nvim",
|
|
|
|
config = function()
|
|
|
|
require("modus-themes").setup({
|
|
|
|
variant = "tinted",
|
|
|
|
transparent = true,
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
2024-09-16 12:08:15 +02:00
|
|
|
{
|
|
|
|
"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", {})
|
2024-09-16 12:40:15 +02:00
|
|
|
vim.cmd("colorscheme modus")
|
2024-09-16 12:08:15 +02:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
2024-09-12 21:43:42 +02:00
|
|
|
}
|