This project allows to setup a vim editor for basic development.
Just clone this repository into your $HOME directory:
$ git clone https://github.com/jmoratilla/vim.git ~/.vim
and copy the ~/.vim/my.vimrc into your $HOME/.vimrc file
$ cp ~/.vim/my.vimrc ~/.vimrc
Last steps are to initialize and update the submodules
$ cd .vim
$ git submodule init
$ git submodule update
I use to forget the short keys to manage screens in Vim.
keys | use |
---|---|
^W, S | Horizontal split |
^W, v | Vertical split |
^W, Q | Close current split |
^W, <cursor> | Switch to adjacent screen |
Also, you can use :sp or :vsp for splitting.
Now enjoy!