Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cosecseccot/cosec-twilight.nvim
- Owner: CosecSecCot
- License: mit
- Created: 2024-04-23T18:07:45.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-10-15T15:25:03.000Z (3 months ago)
- Last Synced: 2024-10-16T18:48:23.281Z (3 months ago)
- Topics: colorscheme, neovim, neovim-colorscheme, nvim, nvim-plugin, vim
- Language: Lua
- Homepage:
- Size: 552 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]]
```