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: