Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cosecseccot/midnight-desert.nvim

A dark purple and brown themed colorscheme, created for neovim using lush
https://github.com/cosecseccot/midnight-desert.nvim

colorscheme duotone duotone-themes duotones-colorschemes minimal neovim neovim-colorscheme neovim-plugin nvim nvim-plugin vim vim-colorscheme

Last synced: 18 days ago
JSON representation

A dark purple and brown themed colorscheme, created for neovim using lush

Awesome Lists containing this project

README

        

# Midnight Desert - A Lush Theme For Neovim

A purple and brown theme made with [lush](https://github.com/rktjmp/lush.nvim).
I hope you enjoy it :D

## Screenshots

![images](./screenshots/demo1.png)

## Installation

You can use any package manager you want, for example:

Using `lazy`:

``` lua
return {
"CosecSecCot/midnight-desert.nvim",
dependencies = {
"rktjmp/lush.nvim",
},
-- no setup function required
}
```

Using `packer`:

``` lua
use {
"CosecSecCot/midnight-desert.nvim",
requires = "rktjmp/lush.nvim"
}
```

## Usage

To use this colorscheme simply type ```:colorscheme midnight-desert```

or add this code in your config file:

```vim
" Vimscript
colorscheme midnight-desert
```

or

```lua
-- Lua
vim.cmd [[colorscheme midnight-desert]]
```