How do I create custom highlight groups and override colorscheme colors?
:highlight MyGroup guifg=#ff0000 guibg=NONE gui=bold
The :highlight command lets you define custom colors for syntax elements, UI components, and your own highlight groups.
:highlight MyGroup guifg=#ff0000 guibg=NONE gui=bold
The :highlight command lets you define custom colors for syntax elements, UI components, and your own highlight groups.
:nohlsearch
After a search in Vim, matched text is highlighted as long as hlsearch is enabled.
set cursorline
Enable cursorline to highlight the entire line where the cursor is positioned.
set hlsearch
Use set hlsearch to highlight all matches of the last search pattern.