If you want Cut/Copy/Paste to work using the "standard" hotkeys, but you don't want to change any of the other configuration options in gvim, try do add the following to ~/.vimrc
.
vmap <C-c> "+yi
vmap <C-x> "+c
vmap <C-v> c<ESC>"+p
imap <C-v> <C-r><C-o>+
Paste only works in Visual and insert mode, so you don't have to worry about the conflict with Ctrl-V and blockwise Visual Mode. This isn't a problem, because Copy and Cut put you into insert mode, so you can immediately paste afterwards. If you try it out you'll find that it feels completely natural.
I came up with this configuration after several iterations of tweaking, and I think it's "perfect" now. If you're even a little bit dissatisfied with your current copy/paste configuration, try this out and I bet you'll love it.
To avoid conflicts with default vim keys, opt for Ctrl+Shift+Key instead of Ctrl+Key – Sheharyar – 2016-09-21T08:48:23.400