5b90c96cd1
Stick with the following style: * Header 1 with the module name is in `lowercase`. * Other headers are in `Sentence case`. Common header names that should be consistently used are `Aliases`, `Contributing`, `Functions`, `Settings`, and `Zsh options`. * The names `Zim` and `Zsh` always appear capitalized, even in the middle of sentences. * Prefer print 'code indented with 4 spaces' instead of ```zsh print 'code fenced by lines with three back-ticks' print 'unless you want syntax highlighting' ```
19 lines
363 B
Markdown
19 lines
363 B
Markdown
custom
|
|
======
|
|
|
|
Add any custom aliases/settings to the `init.zsh` file.
|
|
|
|
Any functions should go in the `functions` subdirectory, where the name of the
|
|
file is the name of the function.
|
|
|
|
For example, this function from your `.zshrc`:
|
|
```zsh
|
|
foo() {
|
|
print 'bar'
|
|
}
|
|
```
|
|
|
|
becomes a file named `foo` in the `functions` subdirectory containing:
|
|
```zsh
|
|
print 'bar'
|
|
```
|