zimfw/modules/custom
Matt Hamilton d52993c70e add 'custom' module for easy customization 2015-12-22 05:55:48 -05:00
..
functions add 'custom' module for easy customization 2015-12-22 05:55:48 -05:00
README.md add 'custom' module for easy customization 2015-12-22 05:55:48 -05:00
init.zsh add 'custom' module for easy customization 2015-12-22 05:55:48 -05:00

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'