diff options
Diffstat (limited to 'zscripts/termuxprompt.zsh')
-rwxr-xr-x | zscripts/termuxprompt.zsh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zscripts/termuxprompt.zsh b/zscripts/termuxprompt.zsh new file mode 100755 index 0000000..1442cc8 --- /dev/null +++ b/zscripts/termuxprompt.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh + +if [ -n "$TERMUX_VERSION" ]; then + PS1="%B%F{green}[%F{blue}%U%~%u%F{green}]%f%b%(!.#.$) " + PS1OVERRIDE=1 + export ZPLUGINSDIR=~/.local/share/zsh/zplugins + export ZPLUGNOROOT=1 +fi |