O melhor lugar para guardar o seu material de configuração é no
arquivo .vimrc . No entanto, é fornecido muito cedo, verifique :h startup:
At startup, Vim checks environment variables and files and sets values
accordingly. Vim proceeds in this order:
1. Set the 'shell' and 'term' option *SHELL* *COMSPEC* *TERM*
2. Process the arguments
3. Execute Ex commands, from environment variables and/or files *vimrc* *exrc*
4. Load the plugin scripts. *load-plugins*
5. Set 'shellpipe' and 'shellredir'
6. Set 'updatecount' to zero, if "-n" command argument used
7. Set binary options
8. Perform GUI initializations
9. Read the viminfo file
10. Read the quickfix file
11. Open all windows
12. Execute startup commands
Como você pode ver, seu .vimrc será carregado antes dos plug-ins. Se você inserir :FindFileCache .nele, ocorrerá um erro, pois esse comando ainda não existe. (Existirá assim que o plugin for carregado na etapa 4.)
Para resolver isso, em vez de executar o comando diretamente, crie um comando automático. Os comandos automáticos executam algum comando quando ocorre um evento. Nesse caso, o evento VimEnter parece apropriado (de :h VimEnter):
*VimEnter*
VimEnter After doing all the startup stuff, including
loading .vimrc files, executing the "-c cmd"
arguments, creating all windows and loading
the buffers in them.
Então, basta colocar esta linha em seu .vimrc :
autocmd VimEnter * FindFileCache .