In the 'normal' state of evil-mode, cursor movement is emulating the standard behavior of vim. I want to make it more similar to the standard emacs behavior in the following two ways.
I want vertical movement to take place within visual lines, rather than logical lines. I.e. if a line is wrapped, pressing
jor<down>should move to the next part of the same line.I want horizontal movement to not stop at newlines. I.e. if the cursor is at the end of a line, pressing
lor<right>should move to the next line.
How can I achieve this?