Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/whizikxd/naysayer-colors.nvim

neovim theme inspired by J.Blow
https://github.com/whizikxd/naysayer-colors.nvim

neovim neovim-colorscheme neovim-plugin neovim-theme neovim-theme-lua nvim-theme vim

Last synced: about 1 month ago
JSON representation

neovim theme inspired by J.Blow

Awesome Lists containing this project

README

        

# naysayer-colors.nvim

neovim theme inspired by J. Blow emacs theme

![Example screenshot](https://raw.githubusercontent.com/whizikxd/naysayer-colors.nvim/master/assets/screenshot.png)

## 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

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

using packer.nvim

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