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

https://github.com/kozlov721/cassiopeia.nvim

Clean dark theme for neovim
https://github.com/kozlov721/cassiopeia.nvim

colorscheme dark-theme lua neovim neovim-colorscheme nvim

Last synced: 6 months ago
JSON representation

Clean dark theme for neovim

Awesome Lists containing this project

README

          

# Cassiopeia



## About

A clean, dark theme for NeoVim written in Lua.

Supports built-in LSP and [TreeSitter](https://github.com/nvim-treesitter/nvim-treesitter).
Inspired by the [supernova remnant](https://en.wikipedia.org/wiki/Cassiopeia_A)
in the Cassiopeia constelation.

## Installation

### [Vim Plug](https://github.com/junegunn/vim-plug)
```vim
Plug 'tjdevries/colorbuddy.nvim'
```

### [Lazy](https://github.com/folke/lazy.nvim)
```lua
use {
'kozlov721/cassiopeia.nvim',
lazy = false,
priority = 1000,
config = function() vim.cmd [[colorscheme cassiopeia]] end,
}
```

### [Packer](https://github.com/wbthomason/packer.nvim)
```lua
use {'kozlov721/cassiopeia.nvim'}
```

You can then enable the scheme using
```vim
colorscheme cassiopeia
```

You can also use this colorscheme
for [Lualine](https://github.com/nvim-lualine/lualine.nvim)
```lua
require('lualine').setup({
options = {theme = 'cassiopeia'}
})
```