Skip to content

whizikxd/naysayer-colors.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

naysayer-colors.nvim

neovim theme inspired by J. Blow emacs theme

Example screenshot

Installation

Tip

Use treesitter for the most consistent highlighting, highlighting without it is a WIP and may be incorrect for some languages

using lazy.nvim

{
  "whizikxd/naysayer-colors.nvim",
  lazy = false,
  config = function()
    vim.cmd("colorscheme naysayer")
  end
}

using packer.nvim

use {
  "whizikxd/naysayer-colors.nvim",
  config = function()
    vim.cmd("colorscheme naysayer")
  end
}