Skip to content

Everblush/everblush.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

Everblush for Vim

A dark, vibrant, and beautiful color scheme for Vim

Preview

Installation

  • If not already present, create the plugin directory as follows:

    Linux

    mkdir -p $HOME/.vim/pack/plugins/start
    

    Windows

    mkdir -p $HOME\vimfiles\pack\plugins\start
    
  • Clone this repository to this directory as follows:

    Linux

    git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME/.vim/pack/plugins/start/everblush.vim
    

    Windows

    git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME\vimfiles\pack\plugins\start\everblush.vim
    
  • Add colorscheme everblush to your vimrc to enable the colorscheme.

  • Add the line Plug 'Everblush/everblush.vim' to your vimrc and install the plugin using the command :PlugInstall.
  • Add colorscheme everblush to your vimrc after call plug#end() to enable the colorscheme.
  • Install the plugin as follows:

    Linux

    git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME/.vim/bundle/everblush.vim
    

    or install as a sub-module

    git submodule add git@github.com:everblush/everblush.vim.git $HOME/.vim/bundle/everblush.vim 
    

    Windows

    git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME\vimfiles\bundle\everblush.vim
    

    or install as a sub-module

    git submodule add git@github.com:everblush/everblush.vim.git $HOME\vimfiles\bundle\everblush.vim
    
  • Add colorscheme everblush to your vimrc after execute pathogen#infect() to enable the colorscheme.

  • Add the line Plugin Everblush/everblush.vim to your vimrc and install the plugin using the command :PluginInstall.
  • Add colorscheme everblush to your vimrc after call vundle#end() to enable the colorscheme.

Integrations

Using Lua

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

Using VimScript

lua << EOF
require('lualine').setup({
    options = { 'theme': 'everblush' }
})
EOF
let g:lightline = {'colorscheme': 'everblush'}
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

Additional configuration

Use the following variables for modifying the default configuration -

Variable Usage
g:everblush_transp_bg Add the line let g:everblush_transp_bg = 1 to your vimrc to set a transparent background.
g:everblushNR Add the line let g:everblushNR = 0 to your vimrc to disable line numbers.

Credits

Made with contrib.rocks.