From 2ca5ba4e6869c23ca17a2c133f07fe5f585da674 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Mon, 3 Feb 2020 18:03:31 -0500 Subject: [PATCH] Add fast paste to vimrc --- vimrc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 0acca74..ebcee4a 100644 --- a/vimrc +++ b/vimrc @@ -441,8 +441,12 @@ map mm :split " Forward delete and replace a word. map d ciw -" Map paste and nonumber. -map p :set paste! paste? +" Allow fast pasting by accessing the system clipboard register. +map p "+p +" Likely won't need to use this if pasting with p, but just in case +" here ya go. +map pp :set paste! paste? + map o :set number! number? " Show spell checking.