dotfiles/legacy/agnoster.zsh

16 lines
653 B
Bash
Raw Normal View History

2020-01-15 14:27:20 +01:00
#git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
#git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
#git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
2020-01-10 23:32:07 +01:00
export ZSH=$HOME/.oh-my-zsh
2020-01-10 15:12:24 +01:00
ZSH_THEME="agnoster"
2020-01-10 23:32:07 +01:00
CASE_SENSITIVE="true"
ENABLE_CORRECTION="true"
plugins=(git kube-ps1 timer zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
2020-01-10 15:12:24 +01:00
export DEFAULT_USER=$LOGNAME
source ~/.dotfiles/zsh/abbr_pwd
prompt_dir() {
prompt_segment blue $CURRENT_FG $(felix_pwd_abbr)
}
PROMPT=$PROMPT'$(kube_ps1) '