1
0
Fork 0
mirror of synced 2024-06-16 22:01:09 -04:00
zimfw/modules/custom/README.md
2015-12-22 05:55:48 -05:00

19 lines
341 B
Markdown

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'
```