From: Mart Lubbers Date: Tue, 3 Mar 2015 08:04:12 +0000 (+0100) Subject: listchars X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=4a4c838231e44d44a9e902a816846c02d9032251;p=dotfiles.git listchars --- diff --git a/.vimrc b/.vimrc index 2c17b65..4669c6c 100644 --- a/.vimrc +++ b/.vimrc @@ -19,11 +19,19 @@ set incsearch set noerrorbells set novisualbell set nobackup -set nowb +set nowritebackup set noswapfile -set cc=80 +set colorcolumn=80 set textwidth=79 +" List characters to mark trailing whitespace etc +set listchars=nbsp:¬,tab:▸\ ,eol:↩,extends:»,precedes:«,trail:• +set list + +" Move through long lines as they were short multiple lines +map j gj +map k gk + " Custom split switching using tab map l l map h h @@ -36,7 +44,7 @@ nnoremap N Nzzzv " Unbind arrow keys, who has them anyways on the keyboard... for prefix in ['i', 'n', 'v'] - for key in ['', '', ''] + for key in ['', '', '', ''] exe prefix . "noremap " . key . " " endfor endfor