G
а потом просто делать что-то вроде
on
filetype python
do source ~/.vim/scripts/python.vim
let process_python_config = v:false
autocmd Filetype python let process_python_config = v:true
" ...
call plug#begin()
if process_python_config
call LoadPluginsForPython()
endif
" ...
call plug#end()