From 3b1bb9528df0046ff9171cfde787e288e39fbd8c Mon Sep 17 00:00:00 2001 From: bretello Date: Wed, 29 Apr 2020 20:35:10 +0200 Subject: [PATCH] vim: Add shortcuts to yank/paste to unnamed/unnamedplus clipboards --- my_configs.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/my_configs.vim b/my_configs.vim index 159da14..944efcf 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -160,3 +160,8 @@ nmap A :ALEGoToDefinition nmap n :ALEFindReferences nmap r :ALERename +" Add shortcuts to yank/paste to unnamed/unnamedplus clipboards +noremap y "*y +noremap p "*p +noremap Y "+y +noremap P "+p