Neovim Lua port of gruber-darker-theme
Last updated Jul 8, 2026
222
Stars
65
Forks
8
Issues
+3
Stars/day
Attention Score
70
Topics
Language breakdown
No language data available.
โธ Files
click to expand
README
gruber-darker.nvim
_A modern Neovim port of a deftheme [adaptation][gruber-darker-theme] of an Emacs [port][gruber-darker] of a BBEdit [colorscheme][gruber-dark]_
Note
This is a work in progress, but fairly stable

Installation
Lazy (recommended)
{ "blazkowolf/gruber-darker.nvim" }
Packer
use "blazkowolf/gruber-darker.nvim"
Plug
Plug 'blazkowolf/gruber-darker.nvim'
Then, somewhere in your init.lua, set the colorscheme
vim.cmd.colorscheme("gruber-darker")
Configuration
Defaults
{
bold = true,
invert = {
signs = false,
tabline = false,
visual = false,
},
italic = {
strings = true,
comments = true,
operators = false,
folds = true,
},
undercurl = true,
underline = true,
}
With updated preferences
Change configuration options by calling setup() prior to loading the colorscheme. Your preferences will be merged with the defaults.
For example, with Lazy...
{
"blazkowolf/gruber-darker.nvim",
opts = {
bold = false,
italic = {
strings = false,
},
},
}
Credits
These repositories were great knowledge sources and their inspiration helped immensely with the development of this plugin.
- [rexim/gruber-darker-theme][gruber-darker-theme]
- [folke/tokyonight.nvim][tokyonight]
- [drsooch/gruber-darker-vim][gruber-darker-vim]
๐ More in this category