aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-17 19:58:38 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-17 19:58:38 +1200
commit379ea2467ec6655cf89bc185a46d9356a4b1c173 (patch)
tree86e0d8fe3d296b8903862ce704b977a2c77e7b68
parentRemove overkill Windows path reduction (diff)
downloaddotfiles-379ea2467ec6655cf89bc185a46d9356a4b1c173.tar.gz
dotfiles-379ea2467ec6655cf89bc185a46d9356a4b1c173.zip
Sort flags for options
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index af19fa51..c96435d8 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -29,8 +29,8 @@ else
endif
" Let me backspace over pretty much anything
-set backspace+=indent " Spaces from 'autoindent'
set backspace+=eol " Line breaks
+set backspace+=indent " Spaces from 'autoindent'
set backspace+=start " The start of current insertion
" Try to keep backups in one system-appropriate dir, including full encoded
@@ -138,10 +138,10 @@ set linebreak
" Define extra 'list' display characters
set listchars+=extends:> " Unwrapped text to screen right
+set listchars+=nbsp:+ " Non-breaking spaces
set listchars+=precedes:< " Unwrapped text to screen left
set listchars+=tab:>- " Tab characters, preserve width
set listchars+=trail:_ " Trailing spaces
-set listchars+=nbsp:+ " Non-breaking spaces
" Don't allow setting options via buffer content
set nomodeline