diff --git a/modules/plugins/theme/theme.nix b/modules/plugins/theme/theme.nix index b0a7a188..ef79349a 100644 --- a/modules/plugins/theme/theme.nix +++ b/modules/plugins/theme/theme.nix @@ -47,12 +47,10 @@ in { config = mkIf cfg.enable { vim = { startPlugins = [cfg.name]; - luaConfigRC = { - theme = entryBefore ["pluginConfigs"] '' - ${cfg.extraConfig} - ${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent base16-colors;}} - ''; - }; + luaConfigRC.theme = entryBefore ["pluginConfigs"] '' + ${cfg.extraConfig} + ${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent base16-colors;}} + ''; }; }; }