Viml plugins

From wikinotes

Tutorials

viml plugins http://stevelosh.com/blog/2011/09/writing-vim-plugins/
python plugins http://www.terminally-incoherent.com/blog/2013/05/06/vriting-vim-plugins-in-python/

Writing Plugins

viml projects
vim helpfile syntax
vim plugin python

Config Locations

$VIMRUNTIME                                     " location of vim's root config  (that installed by the system)
$MYVIMRC                                        " location of loaded vimrc
join(split($MYVIMRC, '/')[:-2],  '/').'/.vim')  " user's ~/.vim
if &rtp =~ 'vim-airline,'                       " if vundle-plugin enabled