neovim theme inspired by J. Blow emacs theme
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
}