1
0
Fork 0
mirror of synced 2024-12-25 08:13:20 -05:00

Setup 80 line marker, showing trailing whitespaces (and should remove them on save but this is not working fo me)

This commit is contained in:
Mirosław Pragłowski 2014-11-22 08:21:54 +01:00
parent 7daf05058e
commit e7bc60ac1b

View file

@ -11,6 +11,16 @@ set cursorline
set number " line numbers set number " line numbers
set nocompatible " choose no compatibility with legacy vi set nocompatible " choose no compatibility with legacy vi
set nowrap " don't wrap lines set nowrap " don't wrap lines
set colorcolumn=80
highlight ColorColumn ctermbg=DarkGray
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => trailing whitespaces (show & remove on save)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set list
set listchars=tab:▸\ ,trail
autocmd BufWritePre * :%s/\s\+$//e
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => custom key maps " => custom key maps