I've been working on expanding my vim-foo lately and I've run across a couple of plugins (autotag.vim for example) that require them to be "sourced" in my .vimrc file. What exactly does this mean and how do I do it?
|
feedback
|
|
Sourcing a file is 'executing' it. Essentially, each line of the file is considered a command. Sourcing it is the same as typing each command in order. You source with the command :source(usually shortened to :so) So if you source myStuff.vim
and if myStuff.vim contained these lines
Its the same as if you typed those commands into vim
The only file sourced by default is the .vimrc(_vimrc on windows) so that's a place you can keep all the commands you use to set up vim every time. Where it gets interesting is the fact that since a sourced file is just a series of commands, and sourcing is a command, you can source files from your source files. So pluggins you use every time could be sourced when you start up vim by adding a line to your .vimrc like this
| |||
|
feedback
|
|
Files in your .vim/plugin directory are sourced (loaded) automatically. | |||
|
feedback
|
|
There is always the :source file command. I usually write | |||||
feedback
|
|
There are normally two vimrc files, one is _vimrc and the other _gvimrc (in the first one are the things for vim, and in the second for gvim - graphical things) - although most people I know just put everything in _vimrc. A good practice is to keep all your extra files (plugins, colorschemes, snippets ...) in a separate (your own) vimfiles directory (which you can take with you). If you do
vim will tell your vimfiles directory should be located. It depends somewhat on the platform (win, unix). On windows the usual is in your user folder (documents and settings, then user ...). In vimfiles directory there are a couple of subdirectories. Amongst them is the "plugin" subdirectory. Plugins put in that dir will be loaded automatically (also plugins put in subdirectories of "plugin"). If you do not wish to load it automatically, just put it in your "vimfiles", or some other directory, and
| |||
|
feedback
|