Currently, I use Ctrl+V to paste from the system to vim relatively frequently, but there is a problem with this. The column editing function is lost in normal mode. How to set Ctrl+V to paste in the system in insert mode and normal mode? What about column editing? (Although Ctrl+Q is also satisfactory, I would like to know similar setting methods)
The solution you want
inoremap <C-V> <C-R>+
But this will automatically use autoindent to force indentation. A better solution is to temporarily turn off the paste option
For details, please refer to autoload/paste.vim