nvim Cheat Sheets

Movement and Interaction

dd  # Cut a line
j   # move down a line
k   # move up a line
yy  # copy a line
2yy # copy 2 lines
yiw # yank word
Y   # copy to end of line
p   # Paste after cursor
P   # Paste before cursor

Functions

:Files # fzf file finder    
/term  # search for term
    n  # search forward
    N  # search backward
:2,7d  # delete lines 2-7
:w     # save file
:wq    # save and quit
:q!    # quit without save