From e9e23d44b2de9f5da2988517c1208d2c8b239829 Mon Sep 17 00:00:00 2001 From: rycee Date: Sat, 27 Jul 2024 08:11:24 +0000 Subject: [PATCH] deploy: 975b83ca560d17db51a66cb2b0dc0e44213eab27 --- options.xhtml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/options.xhtml b/options.xhtml index 5798c243..544c8493 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: