This is my VIM configuration, I’d like to make a note here and remember what I did if I ever encounter a system re-install.
See those install notes for installation.
The Ultimate Vim Configuration
This is the default template of my vimrc, I did have a few modifications, mostly these are related to plugins.
http://amix.dk/vim/vimrc.html
Pathogen
Simple and cool plugin manager, there is an alternative called Vundle available.
https://github.com/tpope/vim-pathogen
nerdtree
This gives you an IDE function, allowing to browse around your local folder for editing different source codes without doing too much command typing.
map:NERDTreeToggle
is added for key mapping triggers.
https://github.com/scrooloose/nerdtree
Tag list
List all of your functions, macros and pre-definitions, and jump to them. Package ctags needs to be installed.
https://github.com/vim-scripts/taglist.vim
Jedi-vim
An auto-completion plugin for Python, very nice indeed!
https://github.com/davidhalter/jedi-vim
Interesting thank you for sharing your vimrc
Rayan
Thank you rayan!