The instructions read:
" Add maktaba and codefmt to the runtimepath.
" (The latter must be installed before it can be used.)
Plugin 'google/vim-maktaba'
Plugin 'google/vim-codefmt'
" Also add Glaive, which is used to configure codefmt's maktaba flags. See
" `:help :Glaive` for usage.
Plugin 'google/vim-glaive'
call glaive#Install()
" Optional: Enable codefmt's default mappings on the <Leader>= prefix.
Glaive codefmt plugin[mappings]
I do not think this will work, unless we stick a call vundle#end()
between the last Plugin
line, and the call glaive#Install()
. See chiphogg/vim-vtd#20 for an example of the problems this could cause. (The associated commit also gives an example of how to improve the instructions.)