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

master
Tim Cuthbertson 2021-06-06 15:14:51 +10:00 committed by Matthieu Coudron
parent 690496c4e5
commit 3b4cace64d
1 changed files with 2 additions and 2 deletions

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);