Candi provides OKLCH-based colorschemes for terminal and GUI Vim.
Download vim.zip from the latest GitHub release and extract:
unzip vim.zip
cp vim/colors/*.vim ~/.vim/colors/For Neovim:
mkdir -p ~/.config/nvim/colors
cp vim/colors/*.vim ~/.config/nvim/colors/See Using Release Artifacts for detailed instructions.
Copy the .vim files to your colors directory:
cp vim/colors/*.vim ~/.vim/colors/Using vim-plug:
Plug 'wtasg/candi', { 'rtp': 'vim/' }Enable the theme in your .vimrc:
" Dark mode
set background=dark
colorscheme candi-dark
" Light mode
set background=light
colorscheme candi-lightEnsure your terminal supports true color:
if (has("termguicolors"))
set termguicolors
endif