aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2012-06-17 12:05:39 +0200
committerMathias Bynens <mathias@qiwi.be>2012-06-17 12:05:39 +0200
commitb84bcd5220ad17c0d874b59f77e6ad12a37e1b73 (patch)
treeb671c27228ea6134d72cf4ce117814568bc8c1b3 /.vimrc
parentb61588dd53d2ca5f4f4cbe5ab32674e90d636dc7 (diff)
downloaddotfiles-b84bcd5220ad17c0d874b59f77e6ad12a37e1b73.tar.gz
dotfiles-b84bcd5220ad17c0d874b59f77e6ad12a37e1b73.tar.bz2
dotfiles-b84bcd5220ad17c0d874b59f77e6ad12a37e1b73.zip
.vimrc: Explicitly allow the use of backspace in insert mode
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index bd7b476..7213d19 100644
--- a/.vimrc
+++ b/.vimrc
@@ -6,6 +6,8 @@ set clipboard=unnamed
set wildmenu
" Allow cursor keys in insert mode
set esckeys
+# Allow backspace in insert mode
+set backspace=indent,eol,start
" Optimize for fast terminal connections
set ttyfast
" Add the g flag to search/replace by default