theme/grubber-darker: add grubber-darker theme, which is inspired by tsodings emacs theme

This commit is contained in:
Snoweuph 2025-12-14 11:59:49 +01:00
commit 71c72d5c68
No known key found for this signature in database
GPG key ID: BEFC41DA223CEC55
2 changed files with 40 additions and 0 deletions

View file

@ -37,6 +37,33 @@ in {
'';
styles = ["dark" "darker" "cool" "deep" "warm" "warmer"];
};
gruber-darker = {
setup = _:
/*
lua
*/
''
require('gruber-darker').setup({
-- defaults
bold = true,
invert = {
signs = false,
tabline = false,
visual = false,
},
italic = {
strings = true,
comments = true,
operators = false,
folds = true,
},
undercurl = true,
underline = true,
})
vim.cmd('colorscheme gruber-darker')
'';
styles = ["dark"];
};
tokyonight = {
setup = {