22 lines
393 B
Bash
22 lines
393 B
Bash
autoload -U colors && colors
|
|
|
|
setopt AUTO_CD
|
|
setopt MARK_DIRS
|
|
|
|
mkdir -p ~/.cache/zsh
|
|
HISTFILE=~/.cache/zsh/history
|
|
HISTSIZE=1000
|
|
SAVEHIST=1000
|
|
setopt SHARE_HISTORY
|
|
setopt HIST_LEX_WORDS
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
setopt HIST_NO_STORE
|
|
|
|
eval $(dircolors)
|
|
|
|
setopt PROMPT_SUBST
|
|
|
|
for f in ${ZDOTDIR}/include/*(.); source $f
|
|
|
|
PROMPT='%F{cyan}%n%f@%F{green}%m%f:${vcs_info_msg_0_}%F{yellow}%~%f > '
|