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.
- Host: GitHub
- URL: https://github.com/strash/kinda_nvim
- Owner: strash
- License: mit
- Created: 2025-04-25T10:39:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-27T19:54:51.000Z (about 1 year ago)
- Last Synced: 2025-05-02T19:54:58.577Z (about 1 year ago)
- Topics: colorscheme, neovim, nvim, theme
- Language: Lua
- Homepage:
- Size: 9.77 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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

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