From c52b166250072e876bdc40b0dd715a8bddb02501 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Tue, 5 Aug 2025 19:04:01 +0000 Subject: [PATCH] deploy: 36ad7d25fbc60b820d3a06dbf4cf6200948f7fc4 --- options.xhtml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/options.xhtml b/options.xhtml index 244818d24..3f7864169 100644 --- a/options.xhtml +++ b/options.xhtml @@ -79805,6 +79805,39 @@ attribute set of string

+

Declared by:

+ + +
+ +<home-manager/modules/programs/zsh> + +
+ +
+ + programs.zsh.siteFunctions + + +
+
+

Functions that are added to the Zsh environment and are subject to +autoloading. The key is the name and the value is the body of +the function to be autoloaded.

They are also already marked for autoloading through autoload -Uz.

+ +

Type: +attribute set of strings concatenated with ā€œ\nā€

+ +

Default: +{ }

+ +

Example:

{
+  mkcd = ''
+    mkdir --parents "$1" && cd "$1"
+  '';
+}
+
+

Declared by: