Earlier quoted context omitted.
Both neovim-gtk & gnvim are great but don't integrate nicely with standard ctrl + c, ctrl + v actions which is super frustrating. VSCode with vim plugin handles this well with the Use Ctrl Keys option set. If you're in insert mode, ctrl + v will paste, otherwise ctrl + v will start visual mode. If you are selecting text, ctrl + c will copy.
set clipboard+=unnamedplus imap + vmap y Most probably you want this as well: cmap +
TIL. This goes into my vimrc right now.