1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00
zsh/Functions/Prompts/prompt_off_setup
1999-10-04 22:57:19 +00:00

11 lines
205 B
Text

# Converted to zsh prompt theme by bash2zshprompt, written by <adam@spiers.net>
# Very simple prompt
prompt_off_setup () {
PS1="%# "
PS2="> "
precmd () { }
preexec () { }
}
prompt_off_setup "$@"