Skip to content

A customized theme for Neovim, based on the Everblush color scheme.

License

Notifications You must be signed in to change notification settings

Alexis12119/nightly.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Preview

⚡️ Requirements

  • Neovim >= 0.8

💻 Installation

packer

use "Alexis12119/nightly.nvim"

vim-plug

Plug 'Alexis12119/nightly.nvim'

lazy

  {
    "Alexis12119/nightly.nvim",
    lazy = false,
    priority = 1000,
    config = function()
      vim.cmd.colorscheme "nightly"
    end,
  }

⚙️ Configuration

❗️ Configuration needs to be set BEFORE loading the colorscheme.

require("nightly").setup({
  transparent = false,
  styles = {
    comments = { italic = true },
    functions = { italic = false },
    variables = { italic = false },
    keywords = { italic = false },
  },
  highlights = {},
})

🚀 Usage

" Vimscript
colorscheme nightly
-- Lua
vim.cmd "colorscheme nightly"
-- Lua
require('lualine').setup({
    options = { theme = 'nightly' }
})
" Vimscript
lua << EOF
require('lualine').setup({
    options = { theme = 'nightly' }
})
EOF

Integrations

Credits

I would like to express my appreciation to the Everblush team and the contributors who created this wonderful theme. I customized the theme according to my liking, but the foundation of the design was built by their hard work and creativity. The color palette of Everblush is truly captivating, and I'm grateful for the opportunity to build upon their work. Thank you for your inspiring contribution to the design community.