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

https://github.com/strash/kinda_nvim

A beautiful, dark and light Neovim colorscheme inspired by the default Neovim colorscheme, with enhanced support for LSP and Tree-sitter.
https://github.com/strash/kinda_nvim

colorscheme neovim nvim theme

Last synced: about 1 year ago
JSON representation

A beautiful, dark and light Neovim colorscheme inspired by the default Neovim colorscheme, with enhanced support for LSP and Tree-sitter.

Awesome Lists containing this project

README

          

# Kinda nvim

> [!NOTE]
> The Helix versions of the `kinda_nvim` and `kinda_nvim_light` themes have been merged into Helix and will be available in the next release after 25.01. See [PR #13406](https://github.com/helix-editor/helix/pull/13406) and the Helix repository at [strash/kinda_nvim.hx](https://github.com/strash/kinda_nvim.hx).

A beautiful, dark and light Neovim colorscheme inspired by the default Neovim colorscheme, with enhanced support for LSP and Tree-sitter.

**Features:**
- Elegant dark and light themes
- Seamless integration with LSP and Tree-sitter for syntax highlighting
- Carefully crafted color palette for readability and aesthetics
- Support for popular Neovim plugins

## Screenshots

### Dark Theme
Dark Theme

### Light Theme
Light Theme

## Supported Plugins

- [blink.cmp](https://github.com/saghen/blink.cmp)
- [fzf-lua](https://github.com/ibhagwan/fzf-lua)
- [oil.nvim](https://github.com/stevearc/oil.nvim)

## Installation

### lazy.nvim
```lua
{
"strash/kinda_nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme kinda_nvim")
end
}
```

### packer.nvim
```lua
use {
"strash/kinda_nvim",
config = function()
vim.cmd("colorscheme kinda_nvim")
end
}
```

## Configuration

To switch between dark and light themes, set the background option:
```lua
vim.o.background = "dark" -- or "light"
```

## Contributing

Contributions are welcome! Please open an issue or submit a pull request.

## License

Distributed under the MIT License. See [LICENSE](https://github.com/strash/kinda_nvim/blob/main/LICENSE) for more information.