Adding Vim Plugins - mattjmorrison/dotfiles GitHub Wiki
Adding Vim Plugins
In order to add additional plugins save the following template somewhere in your dotfiles/custom_configs with a name that ends in -plugin.vim:
example-plugin.vim
"===============================================================================
" Plugin source
"===============================================================================
"'ownerName/example'
"===============================================================================
" Plugin Configurations
"===============================================================================
" N/A
"===============================================================================
" Plugin Keymappings
"===============================================================================
"===============================================================================
" Unite Keymap Menu Item(s)
"===============================================================================
The only thing required in this file is line #4 ("'ownerName/example' in the example above) where ownerName is the owner of the plugin and example is the name as is displayed in the github url. It is crucial that you include the ' around the string. Reference existing files in vim/plugin-configs for examples of filling out the other optional sections in the file.