Skip to content

0xfraso/gruber-darker.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gruber-darker.nvim

A modern Neovim port of a deftheme adaptation of an Emacs port of a BBEdit colorscheme

Note This is a work in progress, but fairly stable

image

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.

About

Neovim Lua port of gruber-darker-theme

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%