feat: add mellow.nvim theme plugin with lualine support

This commit is contained in:
Cristian Daniel Flores 2025-10-17 17:27:25 -07:00
commit e04f9f4860
No known key found for this signature in database
4 changed files with 29 additions and 0 deletions

View file

@ -5,4 +5,5 @@
"oxocarbon"
"gruvbox"
"nord"
"mellow"
]

View file

@ -303,4 +303,13 @@ in {
styles = ["hard" "medium" "soft"];
};
mellow = {
setup = {transparent ? false, ...}: ''
-- Mellow configuration
vim.g.mellow_transparent = ${boolToString transparent}
vim.cmd.colorscheme("mellow")
'';
};
}