Go to file
Daniel Hill 0adfd0bcdc chore: update StyLua configuration 2023-03-26 10:06:15 -04:00
colors feat: add theme preferences to configuration (#2) 2023-03-13 21:57:45 -04:00
lua chore: update StyLua configuration 2023-03-26 10:06:15 -04:00
.stylua.toml chore: update StyLua configuration 2023-03-26 10:06:15 -04:00
LICENSE chore: create license 2023-01-10 15:37:04 -05:00
README.md feat: update config, docs, and add italics to more groups 2023-03-26 10:03:06 -04:00

README.md

gruber-darker.nvim

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

This is a work in progress

Installation

{ "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("GruberDarker")

Configuration

Defaults

{
	bold = true,
	italic = {
    strings = true,
    comments = true,
    operators = false,
    folds = 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.

{
  "blazkowolf/gruber-darker.nvim",
  config = function()
    require("gruber-darker").setup({
      bold = false,
      italic = {
        strings = false,
      },
    })
  end
}

Credits

These repositories were great knowledge sources and their inspiration helped immensely with the development of this plugin.