From c52b166250072e876bdc40b0dd715a8bddb02501 Mon Sep 17 00:00:00 2001
From: khaneliman
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: