Thiago Kenji Okada f6bb75579f Allow arbitrary ZIM location with ZIM_HOME 7 anos atrás
..
functions f6bb75579f Allow arbitrary ZIM location with ZIM_HOME 6 anos atrás
README.md d52993c70e add 'custom' module for easy customization 8 anos atrás
init.zsh e9c87a227d re-word custom/init.zsh 8 anos atrás

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'