blob: 1442cc82f0fd8e0caf495badcb029917a14155eb (
plain)
1
2
3
4
5
6
7
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
|