I have a plugin (FindFile.vim) that needs to run :FindFileCache . whenever I start vim to gather a file cache for quick opening.. I have to run this every time
:FindFileCache .
Create a file named ~/.vim/after/plugin/whatever_name_you_like.vim and fill it with
~/.vim/after/plugin/whatever_name_you_like.vim
FindFileCache .
The order in which scripts are read and executed in the vim directories is described in :help 'runtimepath'
:help 'runtimepath'