Git Product home page Git Product logo

everblush-nvim's Introduction

logo

Everblush for Neovim

A dark, vibrant, and beautiful color scheme for Neovim

Preview

More screenshots

Bash

Rust

Go

CSS

Installation

Add the following lines to the init.lua file in the packer setup function:

{ 'Everblush/nvim', as = 'everblush' }

Add the following lines to the init.lua file in the lazy setup function:

{ 'Everblush/nvim', name = 'everblush' }

Add the line Plug Everblush/nvim to your vimrc and install using the command :PlugInstall.

Usage

Lua

Add this line to your init.lua file:

vim.cmd('colorscheme everblush')

Vimscript

Add this line to your init.vim file (for Neovim) or .vimrc (for Vim):

colorscheme everblush

Configuration

The default options shown below are automatically set when the colorscheme is applied. Refer to the examples for sample configuration changes, and add them to the init.lua file.

require('everblush').setup({

    -- Default options
    override = {},
    transparent_background = false,
    nvim_tree = {
        contrast = false,
    },

    -- Configuration examples

    -- Override the default highlights using Everblush or other colors
    override = {
        Normal = { fg = '#ffffff', bg = 'comment' },
    },

    -- Set transparent background
    transparent_background = true,

    -- Set contrast for nvim-tree highlights
    nvim_tree = {
        contrast = true,
    },
})

Integrations

Lua

require('lualine').setup({
    options = { 'theme' = 'everblush' }
})

VimScript

lua << EOF
require('lualine').setup({
    options = { 'theme' = 'everblush' }
})
EOF

Lua

vim.g.lightline = {
    'colorscheme' = 'everblush',
}

Vimscript

let g:lightline = {'colorscheme': 'everblush'}

Lua

vim.g.airline_theme = 'everblush'
vim.g.airline_powerline_fonts = 1 -- For powerline symbols in statusline
vim.g['airline#extensions#tabline#enabled'] = 1 -- To enable custom tabline

Vimscript

let g:airline_theme = 'everblush'
let g:airline_powerline_fonts = 1 " For powerline symbols in statusline
let g:airline#extensions#tabline#enabled = 1 " To enable custom tabline

Other integrations

Credits

everblush-nvim's People

Contributors

ajibuster499 avatar alexlov avatar alphatechnolog avatar diniamo avatar futsuuu avatar lispyclouds avatar mangeshrex avatar noahtheduke avatar olivaresabarca avatar pluffie avatar prateektade avatar sschneemelcher avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.