aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/config/backspace.vim3
-rw-r--r--vim/vimrc4
2 files changed, 3 insertions, 4 deletions
diff --git a/vim/config/backspace.vim b/vim/config/backspace.vim
new file mode 100644
index 00000000..a4089a68
--- /dev/null
+++ b/vim/config/backspace.vim
@@ -0,0 +1,3 @@
+" Let me backspace over pretty much anything, even if it's not text I inserted
+" in the current session
+set backspace=indent,eol,start
diff --git a/vim/vimrc b/vim/vimrc
index 889cff01..5b5851d8 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -28,10 +28,6 @@ endif
" to it; note that it wipes out your z mark, if you happen to use it
nnoremap J mzJ`z
-" Let me backspace over pretty much anything, even if it's not text I inserted
-" in the current session
-set backspace=indent,eol,start
-
" Don't assume a number with a leading zero is octal; it's far more likely a
" zero-padded decimal, so increment and decrement with ^A and ^X on that basis
set nrformats-=octal