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.
wip/yesman
Wael Nasreddine 5 years ago committed by GitHub
parent 329e097828
commit a3bf0c2e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/applications/editors/neovim/wrapper.nix
  2. 5
      pkgs/misc/vim-plugins/vim-utils.nix

@ -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…
Cancel
Save