installing plugins in vim
You don't need to do anything for Vim to find your plugins and settings. Except actually putting them in the right place.
On UNIX derivatives,
$VIM
refers to the directory where Vim's support files were installed. On Mac OS X, a UNIX derivative, Vim's default location is/usr/bin
and its support files are installed in/usr/share
.Don't put your plugins/colorschemes/scripts in
/usr/share/vim/vim73
. Only default files should be there as they will likely be changed the next time you or Apple updates your install.On Mac OS X (or any UNIX derivative) you must put your plugins/colorschemes/scripts in a
~/.vim
directory and your custom settings in a~/.vimrc
file. None of these are there by default: you'll have to create them yourself as well as any needed sub-directories.Some plugins consist of only one file,
pluginname.vim
that you should put in~/.vim/plugin
as in:~/.vim/plugin/pluginname.vim
If the plugin and your version of Vim are compatible it should work. Check the plugin's page if it needs some activation command or setting. You'll need to relaunch Vim anyway.
Many plugins, though, are composed of many files in many directories like
autoload
,after
,doc
… You'll have to put the files in their corresponding directories under your~/.vim
, creating them as needed. Taking CtrlP as an example:~/.vim/autoload/ctrlp/<many files> ~/.vim/autoload/ctrlp/ctrlp.vim ~/.vim/doc/ctrlp.txt ~/.vim/plugin/ctrlp.vim
Once you are OK with the basics of plugin management in Vim you should try Pathogen or Vundle or some other solution.
Better use ~/.vim/plugin/
directory to put vim plugins files (as mentioned by Vim help command).
See http://www.youtube.com/watch?v=Dmv6-dguS3g&feature=player_embedded#!
In vim, see the help:
:h plugin