theme/theme.nix: fix formatting

This commit is contained in:
Charlie Root 2024-10-04 21:36:13 +02:00
parent e80dedd098
commit 7ba06fd77c
No known key found for this signature in database

View file

@ -47,12 +47,10 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
vim = { vim = {
startPlugins = [cfg.name]; startPlugins = [cfg.name];
luaConfigRC = { luaConfigRC.theme = entryBefore ["pluginConfigs"] ''
theme = entryBefore ["pluginConfigs"] ''
${cfg.extraConfig} ${cfg.extraConfig}
${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent base16-colors;}} ${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent base16-colors;}}
''; '';
}; };
}; };
};
} }