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:
parent
7daf05058e
commit
e7bc60ac1b
1 changed files with 11 additions and 1 deletions
|
@ -6,11 +6,21 @@ highlight LineNr ctermfg=darkgrey
|
|||
set cursorline
|
||||
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" => my custom settings
|
||||
" => my custom settings
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
set number " line numbers
|
||||
set nocompatible " choose no compatibility with legacy vi
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue