summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorWael Nasreddine <wael.nasreddine@gmail.com>2019-08-13 12:25:06 -0700
committerGitHub <noreply@github.com>2019-08-13 12:25:06 -0700
commita3bf0c2e4005670fd710e7eb42403e0348754e77 (patch)
treecaaec82a35466ed4ebf644242ee687be518b4a0a /pkgs/applications/editors/neovim
parent329e097828de876410d2f82f23126115fcfc28dd (diff)
downloadnixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar.gz
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar.bz2
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar.lz
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar.xz
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.tar.zst
nixpkgs-a3bf0c2e4005670fd710e7eb42403e0348754e77.zip
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.
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix
index aa1e2a6b5bd..ec799c0fa49 100644
--- a/pkgs/applications/editors/neovim/wrapper.nix
+++ b/pkgs/applications/editors/neovim/wrapper.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