From b5b423cd084be4b04e55acdd919f2a43448ff60b Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Tue, 19 Sep 2017 05:14:35 +0200 Subject: vimrc: Set 'backspace=indent,eol,start' I installed my Vim config on another machine recently and noticed that it didn't automatically set 'bs=2', like in my normal environment. Put this in our vimrc because it should just work everywhere. --- vimrc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'vimrc') diff --git a/vimrc b/vimrc index 6437378..b511318 100644 --- a/vimrc +++ b/vimrc @@ -375,6 +375,10 @@ " 2017.08.11: " * Add window number to the statusline for quicker window movement. " +" 2017.09.19: +" * Set 'backspace=2' because that doesn't get set by default on some +" Vims. +" " Pathogen @@ -424,6 +428,8 @@ set smartcase " Case insensitive unless an uppercase character is entered set splitright " Open vertical splits to the right of the current window +set backspace=indent,eol,start + " Don't persist options & mappings in saved sessions set sessionoptions-=options -- cgit v1.2.3