mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +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 "$@"
|