mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08: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:
parent
7daf05058e
commit
e7bc60ac1b
@ -11,6 +11,16 @@ set cursorline
|
||||
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 New Issue
Block a user