9 lines
228 B
Bash
9 lines
228 B
Bash
# Uses the command-not-found package Zsh support as seen in
|
|
# http://www.porcheron.info/command-not-found-for-zsh/ and
|
|
# installed in Ubuntu.
|
|
|
|
if [[ -f /etc/zsh_command_not_found ]]; then
|
|
source /etc/zsh_command_not_found
|
|
fi
|
|
|