▀▀█ █▀▀ █ █ █
▄▀ █▀▀ █ █▀▄
▀▀▀ ▀▀▀ ▀▀▀ ▀ ▀
Zelk.vim is a blue themed colorscheme that I made for neovim, and this theme was mainly inspired by schnensch. This was designed to be a very minimalistic theme which is smooth and relaxing for the eyes.
A clean, minimalistic vim/neovim colorscheme originally inspired by the Zorin OS theme.
This theme works amazingly with vim-polyglot for syntax highlighting.
Installing the full colorscheme can be done in any plugin manager, if yours is not listed just search up how to install plugins using that plugin manager.
Vundle
- Install Vundle successfully.
- Add the following text to your
vimrc
file and save it.call vundle#begin() Plugin 'BooleanCube/zelk.vim' call vundle#end()
- Restart your terminal or emulator, run vim/neovim, and run the
:PluginInstall
statement to install your plugins and make sure you relaunch neovim to see the results.
Vim-Plug
- Install Vim-Plug successfully.
- Add the following text to your
vimrc
file and save it.call plug#begin() Plug 'BooleanCube/zelk.vim' call plug#end()
- Restart your terminal or emulator, run vim/neovim, and run the
:PluginInstall
statement to install your plugins and make sure you relaunch neovim to see the results.
Note: As of now, this theme only supports lightline and doesn't have a theme ready for other status lines yet.
Lightline
- First of all, you want to make sure you have lightline installed (and lightline-bufferline is optional which adds the top bufferline).
- Make sure in your lightline settings that should have come from their documentation (you can use mine as an example) has the colorscheme component and put
zelk
in that component. Example:
let g:lightline = {
\ 'colorscheme': 'zelk',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ]
\ },
\ 'component_function': {
\ 'gitbranch': 'FugitiveHead'
\ }
\ }
- If you installed lightline-bufferline, then read their documentation to mess around with some more but here is an example:
let g:lightline = {
\ 'colorscheme': 'zelk',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ]
\ },
\ 'component_function': {
\ 'gitbranch': 'FugitiveHead'
\ },
\ 'tabline': {
\ 'left': [ ['buffers'] ],
\ 'right': [ ['close'] ]
\ },
\ 'component_expand': {
\ 'buffers': 'lightline#bufferline#buffers'
\ },
\ 'component_type': {
\ 'buffers': 'tabsel'
\ }
\ }
- Try messing around with more color.
Created by BooleanCube
Inspired by schnensch and Zorin OS