Everblush for Vim
-
If not already present, create the plugin directory as follows:
Linuxmkdir -p $HOME/.vim/pack/plugins/start
Windows
mkdir -p $HOME\vimfiles\pack\plugins\start
-
Clone this repository to this directory as follows:
Linuxgit 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 yourvimrc
to enable the colorscheme.
- Add the line
Plug 'Everblush/everblush.vim'
to yourvimrc
and install the plugin using the command:PlugInstall
. - Add
colorscheme everblush
to yourvimrc
aftercall plug#end()
to enable the colorscheme.
-
Install the plugin as follows:
Linuxgit clone --depth=1 https://github.com/Everblush/everblush.vim $HOME/.vim/bundle/everblush.vim
or install as a sub-module
git submodule add [email protected]: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 [email protected]:everblush/everblush.vim.git $HOME\vimfiles\bundle\everblush.vim
-
Add
colorscheme everblush
to yourvimrc
afterexecute pathogen#infect()
to enable the colorscheme.
- Add the line
Plugin Everblush/everblush.vim
to yourvimrc
and install the plugin using the command:PluginInstall
. - Add
colorscheme everblush
to yourvimrc
aftercall vundle#end()
to enable the colorscheme.
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
- bufferline.nvim
- gitsigns
- indent-blankline.nvim
- lspsaga.nvim
- neogit
- nvim-cmp
- nvim-tree.lua
- nvim-treesitter
- telescope.nvim
- trouble.nvim
- vim-gitgutter
- vim-illuminate
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. |
Made with contrib.rocks.