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 {
vim = {
startPlugins = [cfg.name];
luaConfigRC = {
theme = entryBefore ["pluginConfigs"] ''
luaConfigRC.theme = entryBefore ["pluginConfigs"] ''
${cfg.extraConfig}
${supportedThemes.${cfg.name}.setup {inherit (cfg) style transparent base16-colors;}}
'';
};
};
};
}