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

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.

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