Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/manual/release-notes/rl-0.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@
[`syntax-gaslighting`](https://github.com/NotAShelf/syntax-gaslighting.nvim),
you're crazy.

- Added neovim theme `gruber-darker`
<https://github.com/blazkowolf/gruber-darker.nvim>.

[vagahbond](https://github.com/vagahbond): [codewindow.nvim]:
https://github.com/gorbit99/codewindow.nvim

Expand Down
27 changes: 27 additions & 0 deletions modules/plugins/theme/supported-themes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
13 changes: 13 additions & 0 deletions npins/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,19 @@
"url": "https://github.com/MagicDuck/grug-far.nvim/archive/275dbedc96e61a6b8d1dfb28ba51586ddd233dcf.tar.gz",
"hash": "sha256-qn1BTNCX0Sm158Lv5JfHThqlJX9ualCIlc+RCjWa+t8="
},
"gruber-darker": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "blazkowolf",
"repo": "gruber-darker.nvim"
},
"branch": "main",
"submodules": false,
"revision": "aba065c3a79b58cc3863d5c9db319255abd1258a",
"url": "https://github.com/blazkowolf/gruber-darker.nvim/archive/aba065c3a79b58cc3863d5c9db319255abd1258a.tar.gz",
"hash": "sha256-4xB/MRTDccA5gTKe6DrN+bNfDx6fzjuIGOLdkuxg8c0="
},
"gruvbox": {
"type": "Git",
"repository": {
Expand Down
Loading