Gruber darker theme for Neovim written entirely in lua.
Based on Alexey's version of the gruber darker theme.
Expand packer snippet:
return require('packer').startup(function(use)
  use {'wbthomason/packer.nvim'}
  use {'thimc/gruber-darker.nvim'}
end)Expand lazy snippet:
{
  'thimc/gruber-darker.nvim',
  config = function()
    require('gruber-darker').setup({
      -- OPTIONAL
      transparent = true, -- removes the background
      -- underline = false, -- disables underline fonts
      -- bold = false, -- disables bold fonts
    })
    vim.cmd.colorscheme('gruber-darker')
  end,
}I don't use all that many plugins, instead I rely on the built in commands such as netrw, vimdiff and spellcheck. So I haven't really extended the themes support but I can confirm that popular plugins such as treesitter, telescope and fugitive work fine.
Pull requests are more than welcome!