summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/vim/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix
index 9128e1bcb11..c75836aa9a8 100644
--- a/pkgs/test/vim/default.nix
+++ b/pkgs/test/vim/default.nix
@@ -26,20 +26,18 @@ let
   wrapNeovim = suffix: config:
     wrapNeovimUnstable neovim-unwrapped (config // {
       extraName = suffix;
-      wrapperArgs = lib.escapeShellArgs (config.wrapperArgs ++
-        ["--add-flags" "-u ${writeText "init.vim" config.neovimRcContent}"]
-      );
+      wrapRc = true;
     });
 in
 {
   vim_empty_config = vimUtils.vimrcFile { beforePlugins = ""; customRC = ""; };
 
   ### neovim tests
-  ##############3
+  ##################
   nvim_with_plugins = wrapNeovim "-with-plugins" nvimConfNix;
 
   ### vim tests
-  ##############3
+  ##################
   vim_with_vim2nix = vim_configurable.customize {
     name = "vim"; vimrcConfig.vam.pluginDictionaries = [ "vim-addon-vim2nix" ];
   };