This vim type courtesy of http://vi.stackexchange.com/questions/2674/how-can-i-easily-move-a-line
For the longest time I'd visually select a range and then do d or x and then p to move lines. Instead, you can simply type
:move +1 :move -2 // move specified line up one line
:[range]m[ove] {address} :m :mo :move
move the lines given by [range] to below the line given by {address}