Alexis12119 / nightly.nvim

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

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

License:MIT License


Languages

Language:Lua 100.0%