From f38019e044f1d735b25b35b9b87b9040eeb58e4d Mon Sep 17 00:00:00 2001 From: Victor Mours Date: Fri, 17 Jul 2015 10:49:44 +0200 Subject: [PATCH] Auto indent pasted text in vim '=' is to indent, '`]' is to do it until the end of the pasted text, and '' brings the cursor back to the start of the pasted text. --- vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vimrc b/vimrc index da1e1ad..5927a8b 100644 --- a/vimrc +++ b/vimrc @@ -65,6 +65,10 @@ set softtabstop=2 set tabstop=2 set expandtab +" Auto indent pasted text +nnoremap p p=`] +nnoremap P P=`] + filetype plugin on filetype indent on