Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cosecseccot/cosec-twilight.nvim

A twilight theme for neovim made with lush
https://github.com/cosecseccot/cosec-twilight.nvim

colorscheme neovim neovim-colorscheme nvim nvim-plugin vim

Last synced: 2 months ago
JSON representation

A twilight theme for neovim made with lush

Awesome Lists containing this project

README

        

# Cosec Twilight - A Lush Theme For Neovim

A recreation of twilight theme using [lush](https://github.com/rktjmp/lush.nvim).
The existing twilight colorschemes were not that great in my opinion, since some
highlight groups were missing, so I made my own :D

## Screenshots

Rust:

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

C++:

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

## Installation

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

Using `lazy`:

``` lua
return {
"CosecSecCot/cosec-twilight.nvim",
-- no setup function required (didn't make one :P)
-- (you can change and customize it using lush according to your preference)
}
```

Using `packer`:

``` lua
use {
"CosecSecCot/cosec-twilight.nvim",
}
```

## Usage

To use this colorscheme simply type ```:colorscheme cosec-twilight```

or add this code in your config file:

```vim
" Vimscript
colorscheme cosec-twilight
```

or

```lua
-- Lua
vim.cmd [[colorscheme cosec-twilight]]
```