vim: highlight only the line number of the cursor line

This commit is contained in:
Fernando Schauenburg 2020-12-15 17:37:37 +01:00
parent 7bb1adc397
commit a63f71d5e4

View file

@ -15,7 +15,8 @@ set nobackup " don't keep backup file after overwriting a file
set clipboard=unnamed " synchronize with system clipboard set clipboard=unnamed " synchronize with system clipboard
set colorcolumn=+1 " highlight column after 'textwidth' set colorcolumn=+1 " highlight column after 'textwidth'
set cursorline " highlight the line of the cursor set cursorline " highlight the line of the cursor
set diffopt=filler,vertical " make side-by-side diffs better set cursorlineopt=number " highlight the line number of the cursor
set diffopt=filler,vertical " make side-by-side diffs better
set encoding=utf8 " use UTF-8 by default set encoding=utf8 " use UTF-8 by default
set expandtab " use spaces whe <Tab> is inserted set expandtab " use spaces whe <Tab> is inserted
set fileformats=unix,mac,dos " prioritize unix <EOL> format set fileformats=unix,mac,dos " prioritize unix <EOL> format