Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Everblush/everblush.vim
🎨 A beautiful and dark vim colorscheme.
https://github.com/Everblush/everblush.vim
color-scheme colorscheme colorschemes hacktoberfest neovim nvim vim vim-colorscheme-dark vim-plugin vimrc
Last synced: 3 days ago
JSON representation
🎨 A beautiful and dark vim colorscheme.
- Host: GitHub
- URL: https://github.com/Everblush/everblush.vim
- Owner: Everblush
- License: mit
- Created: 2021-08-31T09:27:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-19T17:23:44.000Z (over 1 year ago)
- Last Synced: 2024-10-16T02:05:03.524Z (29 days ago)
- Topics: color-scheme, colorscheme, colorschemes, hacktoberfest, neovim, nvim, vim, vim-colorscheme-dark, vim-plugin, vimrc
- Language: Vim Script
- Homepage:
- Size: 4.07 MB
- Stars: 315
- Watchers: 2
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Everblush for Vim
A dark, vibrant, and beautiful color scheme for Vim
## Preview
## Installation
### [Vim packages](https://vimhelp.org/repeat.txt.html#packages)
- 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.### [Vim-plug](https://github.com/junegunn/vim-plug)
- 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.### [Pathogen](https://github.com/tpope/vim-pathogen)
- 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 [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 your `vimrc` after `execute pathogen#infect()` to enable the colorscheme.### [Vundle](https://github.com/VundleVim/Vundle.vim)
- 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
### [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)
**Using Lua**
```lua
require('lualine').setup({
options = { 'theme': 'everblush' }
})
```
**Using VimScript**
```vim
lua << EOF
require('lualine').setup({
options = { 'theme': 'everblush' }
})
EOF
```### [lightline.vim](https://github.com/itchyny/lightline.vim)
```vim
let g:lightline = {'colorscheme': 'everblush'}
```### [vim-airline](https://github.com/vim-airline/vim-airline)
```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
```### Other integrations
- [bufferline.nvim](https://github.com/akinsho/bufferline.nvim)
- [gitsigns](https://github.com/lewis6991/gitsigns.nvim)
- [indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)
- [lspsaga.nvim](https://github.com/glepnir/lspsaga.nvim)
- [neogit](https://github.com/TimUntersberger/neogit)
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [nvim-tree.lua](https://github.com/nvim-tree/nvim-tree.lua)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
- [trouble.nvim](https://github.com/folke/trouble.nvim)
- [vim-gitgutter](https://github.com/airblade/vim-gitgutter)
- [vim-illuminate](https://github.com/RRethy/vim-illuminate)## 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. |
## CreditsMade with [contrib.rocks](https://contrib.rocks).