- Drew Neil Practical Vim
- Drew Neil Modern Vim
- Tutorial on organizing dot-files
- Josean Martinez tutorial, config
- Mario Carrion tutorial, config
Run in shell:
git clone --bare https://github.com/eteresh/cfg-vim.git $HOME/.cfg/vim
git --git-dir=$HOME/.cfg/vim --work-tree=$HOME checkout master
git --git-dir=$HOME/.cfg/vim --work-tree=$HOME config --local status.showUntrackedFiles noNeovim at first run would install all plugins.
If your .vimrc settings or plugins go crazy and don't let you normally use vim, just run vim without any config and plugins:
vim -u NONE -N
where -N option means to use vim in nocompatible mode.
Also with -u option you can specify which config to use instead of default $HOME/.vimrc. For example:
vim -u $HOME/your_base_vim_config.vim