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

This commit is contained in:
Tim Cuthbertson 2021-06-06 15:14:51 +10:00 committed by Matthieu Coudron
parent 690496c4e5
commit 3b4cace64d

View file

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