https://github.com/meeehdi-dev/sunset.nvim
🌅 Neovim colorscheme inspired by the hues of a sunset
https://github.com/meeehdi-dev/sunset.nvim
color-scheme colorscheme lua neovim neovim-lua neovim-plugin neovim-plugins
Last synced: 10 months ago
JSON representation
🌅 Neovim colorscheme inspired by the hues of a sunset
- Host: GitHub
- URL: https://github.com/meeehdi-dev/sunset.nvim
- Owner: meeehdi-dev
- License: mit
- Archived: true
- Created: 2024-01-11T21:19:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T18:56:24.000Z (about 2 years ago)
- Last Synced: 2025-03-16T03:16:28.759Z (over 1 year ago)
- Topics: color-scheme, colorscheme, lua, neovim, neovim-lua, neovim-plugin, neovim-plugins
- Language: Lua
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sunset.nvim
Sunset is a colorscheme based on a color palette inspired by the colors of sunsets.
The base code for this plugin is taken from [dracula.nvim](https://github.com/Mofiqul/dracula.nvim/).

## Configuration
Here is the default configuration.
- `transparent` is a boolean defining if the background is transparent
- `italic_comment` is a boolean defining if the comments should be in italic
```lua
require('sunset').setup({
transparent = false,
italic_comment = false,
})
```
## Usage
Install and configure using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'meeehdi-dev/sunset.nvim',
config = true, -- setup with default options
}
-- or
{
'meeehdi-dev/sunset.nvim',
opts = {
transparent = true,
italic_comment = true,
},
}
```