1
0
Fork 0

Prefer 'minimal' prompt in console (monitor)

pull/713/head
Indrajit Raychaudhuri 10 years ago
parent d020d34e59
commit 16c70c305c

@ -85,7 +85,12 @@ zstyle ':prezto:module:editor' key-bindings 'emacs'
# Set the prompt theme to load. # Set the prompt theme to load.
# Setting it to 'random' loads a random theme. # Setting it to 'random' loads a random theme.
# Auto set to 'off' on dumb terminals. # Auto set to 'off' on dumb terminals.
zstyle ':prezto:module:prompt' theme 'sorin' # Prefer 'minimal' prompt in console (monitor)
if [[ "$TERM" == (linux|*bsd*) ]]; then
zstyle ':prezto:module:prompt' theme 'minimal'
else
zstyle ':prezto:module:prompt' theme 'sorin'
fi
# #
# Ruby # Ruby

Loading…
Cancel
Save