dotfiles/zsh/zshrc

13 lines
453 B
Bash
Raw Normal View History

2020-01-10 15:12:24 +01:00
export ZSH=$HOME/.oh-my-zsh
CASE_SENSITIVE="true"
ENABLE_CORRECTION="true"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
2020-01-10 15:16:44 +01:00
source ~/oh-my-zsh/custom/themes/slimline/slimline.zsh
2020-01-10 15:12:24 +01:00
SLIMLINE_USER_HOST_INFO_FORMAT="%F{green}|user|%F{white}@%F{cyan}|host|%f"
SLIMLINE_SYMBOL_WORKING_FORMAT="%F{red}➜%f"
SLIMLINE_SYMBOL_READY_FORMAT="%F{white}➜%f"
SLIMLINE_MAX_EXEC_TIME=2
[ -e ~/.zshrc.local ] && source ~/.zshrc.local