vim's :vsp
command opens a window on right. Is there a way to open it on the left side of the screen?
You have to do :rightb vsp
. or :bel vsp
.
The rightb
and bel[owright]
stands for right below. You can put any splitting command after it and it will split in that direction dependant on if v is in the splitting command.
There is also :lefta vsp
and :abo vsp
, if you want to make sure you split in the other direction and works in the same way as above.