Custom theme is very minimal and has little info about your whereabouts on the server. "bira" theme set as default. Custom theme wasn't removed, just commented-out.
21 lines
662 B
Bash
21 lines
662 B
Bash
export ZSH="$HOME/.oh-my-zsh"
|
|
export ALIASES="$HOME/.config/aliases"
|
|
export CT_DIR="$HOME/.config/custom_tools"
|
|
export EDITOR="vim"
|
|
# ZSH_THEME=""
|
|
ZSH_THEME="bira"
|
|
DISABLE_AUTO_TITLE="true"
|
|
plugins=(
|
|
git
|
|
zsh-syntax-highlighting
|
|
zsh-autosuggestions
|
|
z
|
|
)
|
|
source $ZSH/oh-my-zsh.sh
|
|
# source $HOME/.config/zsh/zhann-elvis.zsh-theme
|
|
source $ALIASES/.aliases
|
|
autoload -Uz zcalc
|
|
[ -f /usr/share/doc/fzf/examples/key-bindings.zsh ] && source /usr/share/doc/fzf/examples/key-bindings.zsh
|
|
[ -f /usr/share/doc/fzf/examples/completion.zsh ] && source /usr/share/doc/fzf/examples/completion.zsh
|
|
command -v fzf >/dev/null 2>&1 && eval "$(fzf --zsh 2>/dev/null)" || true
|