1
0
Fork 0
mirror of synced 2024-06-01 14:51:11 -04:00
zimfw/modules/custom
Thiago Kenji Okada f6bb75579f Allow arbitrary ZIM location with ZIM_HOME
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
2017-09-04 17:25:01 -05:00
..
functions Allow arbitrary ZIM location with ZIM_HOME 2017-09-04 17:25:01 -05:00
init.zsh re-word custom/init.zsh 2015-12-31 10:48:03 -05:00
README.md add 'custom' module for easy customization 2015-12-22 05:55:48 -05:00

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'