1
0
Fork 0
mirror of synced 2024-06-17 06:11:09 -04:00
zimfw/modules/custom/README.md

19 lines
341 B
Markdown
Raw Normal View History

2018-04-05 00:37:10 -04: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'
```