8 lines
118 B
Bash
8 lines
118 B
Bash
# Functions meant to be used interactively.
|
|
# vim: ft=zsh
|
|
|
|
# Source the .zshrc again
|
|
function reload {
|
|
exec zsh -i
|
|
}
|