I want insert newlines in normal mode in vim using Shift-Enter and Ctrl-Enter. I try some solutions and mixing solutions from Vim Wikia - Insert newline wi
In edit mode, you can use p to paste the current clipboard. Since o adds a newline, you can use oddp to add a new line below the cursor; from there, p will add a new line until you delete something else.