diff options
Diffstat (limited to 'config/vim/vimrc')
-rw-r--r-- | config/vim/vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/vim/vimrc b/config/vim/vimrc index c67109f..7c66eef 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -6,7 +6,7 @@ set number set scrolloff=5 " Smooth scroll set clipboard=unnamedplus " Use system clipboard set shortmess+=I " Deactivate intro text -set fillchars=eob:\ " Remove "~" for empty lines (must end with trailing a space) +set fillchars=eob:\ " Remove "~" for empty lines (`eob:\` must end with a trailing space) :set nowrap " Disable wrapping autocmd BufwritePost * %s/\s\+$//e " Remove useless trailing spaces when saving autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o " Disable autocomments |