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

authored by Tim Cuthbertson and committed by Matthieu Coudron 3b4cace6 690496c4

+2 -2
+2 -2
pkgs/misc/vim-plugins/vim-utils.nix
··· 341 341 beforePlugins 342 342 vamImpl 343 343 (nativeImpl packages) 344 - customRC 345 344 ] 346 345 ++ lib.optional (pathogen != null) pathogenImpl 347 - ++ lib.optional (plug != null) plugImpl; 346 + ++ lib.optional (plug != null) plugImpl 347 + ++ [ customRC ]; 348 348 349 349 in 350 350 lib.concatStringsSep "\n" (lib.filter (x: x != null && x != "") entries);