Added COMPLETION_STYLE option

pull/5/head
Aaron Johnson 7 years ago
parent 401560c28b
commit 1787b595a2

@ -4,6 +4,7 @@ SYNTAX_HIGHLIGHT=true #On-the-fly syntax highlighting of commands that you type
# Prompt Style # Prompt Style
PROMPT_STYLE=bsd #Valid options: bsd, bsd2, ar5 PROMPT_STYLE=bsd #Valid options: bsd, bsd2, ar5
COMPLETION_STYLE=bash #ZSH "automenu" option toggle - Valid options: bash, zsh (defaults to zsh)
# Example prompts: # Example prompts:
# bsd: user@host:~/storage/git[git-branch]% # bsd: user@host:~/storage/git[git-branch]%

@ -5,7 +5,8 @@ promptinit
setopt autocd setopt autocd
unsetopt beep unsetopt beep
setopt HIST_IGNORE_SPACE setopt HIST_IGNORE_SPACE
if [ $COMPLETION_STYLE = bash ]
## BASH-style completion; comment out for full ZSH completion. then
setopt noautomenu setopt noautomenu
fi

Loading…
Cancel
Save