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

This commit is contained in:
Tim Cuthbertson
2021-06-06 16:25:11 +02:00
committed by Matthieu Coudron
parent 690496c4e5
commit 3b4cace64d
+2 -2
View File
@@ -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);