Go to file
Francesco Raso e2128bfe75
feat: `nvim-cmp`, `vim-fugitive`, and invert visual selection support (#3)
* feat(cmp): add nvim-cmp support

* feat(config): invert visual selection option

* feat(git): vim-fugitive support
2023-04-17 14:03:33 -04:00
colors feat!: rename colorscheme from "GruberDarker" to "gruber-darker" 2023-03-28 20:40:28 -04:00
lua feat: `nvim-cmp`, `vim-fugitive`, and invert visual selection support (#3) 2023-04-17 14:03:33 -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: `nvim-cmp`, `vim-fugitive`, and invert visual selection support (#3) 2023-04-17 14:03:33 -04:00

README.md

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

{ "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.