Plug 'KeitaNakamura/neodark.vim' " vim-plug
set termguicolors " recommended
colorscheme neodark
NOTE: All options must be before setting
colorscheme
To use your default terminal background:
let g:neodark#terminal_transparent = 1 " default: 0
If you want solid vertical split matching the statusline:
let g:neodark#solid_vertsplit = 1 " default: 0
To use italics:
let g:neodark#italics = 1 " default: 0
airline and lightline themes are also included. For lightline,
let g:lightline = {}
let g:lightline.colorscheme = 'neodark'
For airline, just use!
Custom terminal themes are also available (see term
folder).
If you use a terminal which doesn't support true color like Terminal.app, you
can get a true color scheme by enabling g:neodark#use_custom_terminal_theme
.
let g:neodark#use_custom_terminal_theme = 1 " default: 0