-
Notifications
You must be signed in to change notification settings - Fork 37
Adding Vim Plugins
Jarrod edited this page Aug 16, 2016
·
3 revisions
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.