This represents my personal vim configuration to provide me with a consistent vim experience on all my personal systems.
Just clone this repository in your home directory ...
git clone https://github.com/2chg/.vim.git ~/.vim
... and run the provided install
script to create a ~/.vimrc
symlink
and download the required submodules.
~/.vim/install
Just use your vim as usual. :)
My configuration uses Pathogen so you can easily install further
vim plugins with the git submodule add
command, like
cd ~/.vim
git submodule add git@source/pluginname.git bundle/pluginname
The following additional plugins are uses (as git submodules):
- sensible.vim for sensible configuration defaults
- lightline for sexier status line
- nerdcommenter for easier (un)commenting of code
- nerdtree for easier file browsing
- supertab for autocomplete with the tab key
- fugitive as Git wrapper
- gitgutter for Git indicators in the linenumber gutter
- multiple-cursors for multiple cursor support
This work is inspired by an article form Marc G Gauthier about his Vim Configuration From Scratch.