https://github.com/thehiddenlayer/karonda.nvim
intense, original Vim theme. an aquired taste.
https://github.com/thehiddenlayer/karonda.nvim
colorscheme lua lush-nvim neovim nvim theme vim
Last synced: 16 days ago
JSON representation
intense, original Vim theme. an aquired taste.
- Host: GitHub
- URL: https://github.com/thehiddenlayer/karonda.nvim
- Owner: TheHiddenLayer
- License: other
- Created: 2022-03-25T02:45:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T07:19:46.000Z (almost 2 years ago)
- Last Synced: 2024-04-25T08:27:25.593Z (almost 2 years ago)
- Topics: colorscheme, lua, lush-nvim, neovim, nvim, theme, vim
- Language: Lua
- Homepage:
- Size: 2.1 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Click for Pictures!

### Supported Plugins
- [x] [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [x] [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
- [x] [nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)
- [x] [coq_nvim](https://github.com/ms-jpq/coq_nvim)
- [x] [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [ ] [lspsaga.nvim](https://github.com/glepnir/lspsaga.nvim)
- [ ] [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)
- [ ] [vim-fugitive](https://github.com/tpope/vim-fugitive)
- [ ] [which-key.nvim](https://github.com/folke/which-key.nvim)
You're welcome to request more plugins.
### Install
[lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
"TheHiddenLayer/karonda",
dependencies = { "rktjmp/lush.nvim' },
}
```
[packer](https://github.com/wbthomason/packer.nvim)
```lua
use {
"TheHiddenLayer/karonda",
requires = { "rktjmp/lush.nvim" }
}
```
[vim-plug](https://github.com/junegunn/vim-plug):
```vim
Plug 'TheHiddenLayer/karonda', { 'branch': 'master' }
```
### Usage
```lua
-- lua
vim.opt.termguicolors = true
vim.cmd 'colorscheme karonda'
```
```VimScript
" vimscript
set termguicolors=true
colorscheme karonda
```