Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cosecseccot/midnight-desert.nvim
- Owner: CosecSecCot
- License: mit
- Created: 2024-04-07T15:05:00.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-08T03:52:54.000Z (9 months ago)
- Last Synced: 2024-11-06T03:26:51.576Z (2 months ago)
- Topics: colorscheme, duotone, duotone-themes, duotones-colorschemes, minimal, neovim, neovim-colorscheme, neovim-plugin, nvim, nvim-plugin, vim, vim-colorscheme
- Language: Lua
- Homepage:
- Size: 864 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]]
```