diff --git a/options.xhtml b/options.xhtml index 5798c243f..544c8493f 100644 --- a/options.xhtml +++ b/options.xhtml @@ -32363,6 +32363,52 @@ one of “emacs”, “vim”

Default: "emacs"

+

Declared by:

+ + +
+ +<home-manager/modules/programs/mcfly.nix> + +
+ +
+ + programs.mcfly.settings + + +
+
+

Settings written to ~/.config/mcfly/config.toml.

Note, if your McFly database is currently in ~/.mcfly, +then this option has no effect. +Move the database to $XDG_DATA_DIR/mcfly/history.db and +remove ~/.mcfly to make the settings take effect. See +https://github.com/cantino/mcfly#database-location.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  colors = {
+    menubar = {
+      bg = "black";
+      fg = "red";
+    };
+    darkmode = {
+      prompt = "cyan";
+      timing = "yellow";
+      results_selection_fg = "cyan";
+      results_selection_bg = "black";
+      results_selection_hl = "red";
+    };
+  };
+}
+
+
+

Declared by: