A dark colorscheme with vibrant colors.
- Using your plugin manager of choice and placing
flrnd/candid.vim
in your .vimrc file. or - clone this directory into your vim/plugged directory
" important:
set termguicolors
set background=dark
syntax on
colorscheme candid
"" if you use lightline
" Lightline
let g:lightline = { 'colorscheme': 'candid' }
For color customization, declare the dictionary g:candid_color_store
in your .vimrc / init.vim file before colorscheme candid
:
" Overrides 'black' and 'white' colors.
let g:candid_color_store = {
\ "black": {"gui": "#121212", "cterm256": "0"},
\ "white": {"gui": "#f4f4f4", "cterm256": "255"},
\}
colorscheme candid
...