mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-18 21:14:11 +01:00
12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
# 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 "$@"
|