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
- Host: GitHub
- URL: https://github.com/kozlov721/cassiopeia.nvim
- Owner: kozlov721
- License: mit
- Created: 2022-03-20T22:51:37.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-16T12:44:29.000Z (about 2 years ago)
- Last Synced: 2025-07-14T01:00:09.490Z (7 months ago)
- Topics: colorscheme, dark-theme, lua, neovim, neovim-colorscheme, nvim
- Language: Lua
- Homepage:
- Size: 8.38 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'}
})
```