vim-utils: append customRC after plug / pathogen plugins are loaded

launchpad/nixpkgs/master
Tim Cuthbertson 3 years ago committed by Matthieu Coudron
parent 690496c4e5
commit 3b4cace64d
  1. 4
      pkgs/misc/vim-plugins/vim-utils.nix

@ -341,10 +341,10 @@ let
beforePlugins
vamImpl
(nativeImpl packages)
customRC
]
++ lib.optional (pathogen != null) pathogenImpl
++ lib.optional (plug != null) plugImpl;
++ lib.optional (plug != null) plugImpl
++ [ customRC ];
in
lib.concatStringsSep "\n" (lib.filter (x: x != null && x != "") entries);

Loading…
Cancel
Save