Skip to content

Commit 6129fae

Browse files
committed
theme/grubber-darker: add grubber-darker theme, which is inspired by tsodings emacs theme
1 parent 62090f4 commit 6129fae

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

docs/manual/release-notes/rl-0.9.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@
216216
[`syntax-gaslighting`](https://github.com/NotAShelf/syntax-gaslighting.nvim),
217217
you're crazy.
218218
219+
- Added neovim theme `gruber-darker`
220+
<https://github.com/blazkowolf/gruber-darker.nvim>.
221+
219222
[vagahbond](https://github.com/vagahbond): [codewindow.nvim]:
220223
https://github.com/gorbit99/codewindow.nvim
221224

modules/plugins/theme/supported-themes.nix

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,33 @@ in {
3737
'';
3838
styles = ["dark" "darker" "cool" "deep" "warm" "warmer"];
3939
};
40+
gruber-darker = {
41+
setup = _:
42+
/*
43+
lua
44+
*/
45+
''
46+
require('gruber-darker').setup({
47+
-- defaults
48+
bold = true,
49+
invert = {
50+
signs = false,
51+
tabline = false,
52+
visual = false,
53+
},
54+
italic = {
55+
strings = true,
56+
comments = true,
57+
operators = false,
58+
folds = true,
59+
},
60+
undercurl = true,
61+
underline = true,
62+
})
63+
vim.cmd('colorscheme gruber-darker')
64+
'';
65+
styles = ["dark"];
66+
};
4067

4168
tokyonight = {
4269
setup = {

npins/sources.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,19 @@
656656
"url": "https://github.com/MagicDuck/grug-far.nvim/archive/275dbedc96e61a6b8d1dfb28ba51586ddd233dcf.tar.gz",
657657
"hash": "sha256-qn1BTNCX0Sm158Lv5JfHThqlJX9ualCIlc+RCjWa+t8="
658658
},
659+
"gruber-darker": {
660+
"type": "Git",
661+
"repository": {
662+
"type": "GitHub",
663+
"owner": "blazkowolf",
664+
"repo": "gruber-darker.nvim"
665+
},
666+
"branch": "main",
667+
"submodules": false,
668+
"revision": "aba065c3a79b58cc3863d5c9db319255abd1258a",
669+
"url": "https://github.com/blazkowolf/gruber-darker.nvim/archive/aba065c3a79b58cc3863d5c9db319255abd1258a.tar.gz",
670+
"hash": "sha256-4xB/MRTDccA5gTKe6DrN+bNfDx6fzjuIGOLdkuxg8c0="
671+
},
659672
"gruvbox": {
660673
"type": "Git",
661674
"repository": {

0 commit comments

Comments
 (0)