What simply worked for me in Linux (Ubuntu 20.04)
Copying to system clipboard:
- Select what you want to copy in Visual mode.
- Type
"+y
- Press Enter
Paste something form system's clipboard:
- Move to the place where you want to paste the copied text in vim.
- Just type
"+P
to paste before cursor OR"+p
to paste after cursor.
To know more how this works: Copy and Paste to/from Vim from/to Other Programs!