-
Couldn't load subscription status.
- Fork 6
Color Schemes
Egbert edited this page Sep 3, 2024
·
2 revisions
Only Solarized scheme is supported. That too is on my list to investigate.
To display all the colors, execute this in any vim edit session:
:so $VIMRUNTIME/syntax/colortest.vimFirst method to turn on syntax highlighting is at your console or in your vimscript (.vimrc) configuration file:
:syntax on" Syntax highlight
if &t_Co >= 256
if has("gui_running")
colorscheme vividchalk
set colorgui
endif
set tgc
endif