### Windows Vim Packages Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Clones the Everblush.vim repository into the Vim packages start directory on Windows. ```bash git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME\vimfiles\pack\plugins\start\everblush.vim ``` -------------------------------- ### Linux Vim Packages Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Clones the Everblush.vim repository into the Vim packages start directory on Linux. ```bash git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME/.vim/pack/plugins/start/everblush.vim ``` -------------------------------- ### Windows Pathogen Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Installs Everblush.vim using Pathogen on Windows. ```bash git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME\vimfiles\bundle\everblush.vim ``` -------------------------------- ### Linux Pathogen Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Installs Everblush.vim using Pathogen on Linux. ```bash git clone --depth=1 https://github.com/Everblush/everblush.vim $HOME/.vim/bundle/everblush.vim ``` -------------------------------- ### Windows Pathogen Submodule Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Installs Everblush.vim as a submodule using Pathogen on Windows. ```bash git submodule add git@github.com:everblush/everblush.vim.git $HOME\vimfiles\bundle\everblush.vim ``` -------------------------------- ### Linux Pathogen Submodule Installation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Installs Everblush.vim as a submodule using Pathogen on Linux. ```bash git submodule add git@github.com:everblush/everblush.vim.git $HOME/.vim/bundle/everblush.vim ``` -------------------------------- ### Linux Plugin Directory Creation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Creates the necessary plugin directory structure on Linux systems for Vim packages. ```bash mkdir -p $HOME/.vim/pack/plugins/start ``` -------------------------------- ### Windows Plugin Directory Creation Source: https://github.com/everblush/everblush.vim/blob/main/README.md Creates the necessary plugin directory structure on Windows systems for Vim packages. ```bash mkdir -p $HOME\vimfiles\pack\plugins\start ``` -------------------------------- ### lualine.nvim Configuration (Lua) Source: https://github.com/everblush/everblush.vim/blob/main/README.md Configures lualine.nvim to use the Everblush theme via Lua. ```lua require('lualine').setup({ options = { 'theme': 'everblush' } }) ``` -------------------------------- ### lualine.nvim Configuration (VimScript) Source: https://github.com/everblush/everblush.vim/blob/main/README.md Configures lualine.nvim to use the Everblush theme via VimScript. ```vim lua << EOF require('lualine').setup({ options = { 'theme': 'everblush' } }) EOF ``` -------------------------------- ### lightline.vim Configuration Source: https://github.com/everblush/everblush.vim/blob/main/README.md Configures lightline.vim to use the Everblush colorscheme. ```vim let g:lightline = {'colorscheme': 'everblush'} ``` -------------------------------- ### Transparent Background Source: https://github.com/everblush/everblush.vim/blob/main/README.md Set a transparent background by adding this line to your vimrc. ```vim let g:everblush_transp_bg = 1 ``` -------------------------------- ### vim-airline Configuration Source: https://github.com/everblush/everblush.vim/blob/main/README.md Configures vim-airline to use the Everblush theme and enables powerline fonts and custom tabline. ```vim 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 ``` -------------------------------- ### Disable Line Numbers Source: https://github.com/everblush/everblush.vim/blob/main/README.md Disable line numbers by adding this line to your vimrc. ```vim let g:everblushNR = 0 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.