Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/whizikxd/naysayer-colors.nvim
- Owner: whizikxd
- License: gpl-3.0
- Created: 2024-09-25T19:51:02.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-11-27T07:03:18.000Z (2 months ago)
- Last Synced: 2024-11-27T08:19:45.356Z (2 months ago)
- Topics: neovim, neovim-colorscheme, neovim-plugin, neovim-theme, neovim-theme-lua, nvim-theme, vim
- Language: Lua
- Homepage:
- Size: 197 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 languagesusing 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
}
```