f6bb75579f
This change allow arbitrary Zim location path by setting a new environment variable, ZIM_HOME. If the user does not set it, Zim falls back to the old "${ZDOTDIR:-${HOME}}/.zim" location. Closes #203 |
||
---|---|---|
.. | ||
functions | ||
init.zsh | ||
README.md |
Custom
Add any custom aliases/settings to the init.zsh
file.
Any functions should go in the functions
folder, where the name of the file is the name of the function.
For example, this function from your .zshrc:
foo() {
print 'bar'
}
becomes a file named 'foo' in the functions folder containing:
print 'bar'