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
My alternative is using oo (resp. OO) to insert a new line under (resp. over) the current through this mapping:
nmap oo o<Esc>k
(resp. nmap OO O<Esc>j)