From a2d50daa0c4b29f7195823c4e60e011e168dbf9f Mon Sep 17 00:00:00 2001 From: diniamo Date: Thu, 18 Jul 2024 10:28:32 +0200 Subject: [PATCH] modules/wrapper(rc): add back entryAnywhere --- modules/wrapper/rc/config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wrapper/rc/config.nix b/modules/wrapper/rc/config.nix index 49a3ae9..be299f3 100644 --- a/modules/wrapper/rc/config.nix +++ b/modules/wrapper/rc/config.nix @@ -11,7 +11,7 @@ inherit (lib.trivial) showWarnings; inherit (lib.types) str nullOr; inherit (lib.generators) mkLuaInline; - inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag; + inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag entryAnywhere; inherit (lib.nvim.lua) toLuaObject; inherit (lib.nvim.config) mkBool; @@ -133,7 +133,7 @@ in { in { vim = { luaConfigRC = { - globalsScript = concatLines globalsScript; + globalsScript = entryAnywhere (concatLines globalsScript); # basic, theme pluginConfigs = entryAfter ["theme"] pluginConfigs; extraPluginConfigs = entryAfter ["pluginConfigs"] extraPluginConfigs;