forked from mirrors/nixpkgs
vimPlugins: turn filetype and syntax before sourcing the plugins (#66536)
Vim Terraform expects the `filetypedetect` group to exist. However, since we were enabling the filetype and the syntax *after* loading the plugins, it was exiting with an error preventing us from generating the remote plugins manifest with the plugin enabled. See #65894 for context.
This commit is contained in:
parent
329e097828
commit
a3bf0c2e40
|
@ -100,7 +100,7 @@ let
|
|||
# Only display the log on error since it will contain a few normally
|
||||
# irrelevant messages.
|
||||
if ! $out/bin/nvim \
|
||||
-u ${vimUtils.vimrcFile (configure // { customRC = ""; })} \
|
||||
-u ${vimUtils.vimrcFile (configure // { customRC = ""; beforePlugins = ''filetype indent plugin on | syn on''; })} \
|
||||
-i NONE -n \
|
||||
-E -V1rplugins.log -s \
|
||||
+UpdateRemotePlugins +quit! > outfile 2>&1; then
|
||||
|
|
|
@ -188,7 +188,8 @@ let
|
|||
vam ? null,
|
||||
pathogen ? null,
|
||||
plug ? null,
|
||||
customRC ? ""
|
||||
customRC ? "",
|
||||
beforePlugins ? "",
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -341,6 +342,8 @@ let
|
|||
" minimal setup, generated by NIX
|
||||
set nocompatible
|
||||
|
||||
${beforePlugins}
|
||||
|
||||
${vamImpl}
|
||||
${pathogenImpl}
|
||||
${plugImpl}
|
||||
|
|
Loading…
Reference in a new issue