Skip to content

meeehdi-dev/sunset.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

7 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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.

demo

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
require('sunset').setup({
  transparent = false,
  italic_comment = false,
})

Usage

Install and configure using lazy.nvim

  {
    'meeehdi-dev/sunset.nvim',
    config = true, -- setup with default options
  }
  -- or
  {
    'meeehdi-dev/sunset.nvim',
    opts = {
      transparent = true,
      italic_comment = true,
    },
  }