Skip to content

Commit

Permalink
theme: fix broken function signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
horriblename committed Aug 24, 2024
1 parent fc2e599 commit 9a8cd18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/plugins/theme/supported-themes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
inherit (lib.trivial) boolToString warnIf;
in {
onedark = {
setup = {style ? "dark"}: ''
setup = {style ? "dark", ...}: ''
-- OneDark theme
require('onedark').setup {
style = "${style}"
Expand All @@ -30,7 +30,7 @@ in {
};

dracula = {
setup = {transparent}: ''
setup = {transparent, ...}: ''
require('dracula').setup({
transparent_bg = ${boolToString transparent},
});
Expand Down

0 comments on commit 9a8cd18

Please sign in to comment.