2021-02-18 09:43:11 +00:00
|
|
|
export HISTFILE=$HOME/.zsh_history
|
2021-02-26 07:23:22 +00:00
|
|
|
export SAVEHIST=10000
|
2021-02-18 09:43:11 +00:00
|
|
|
export HISTFILESIZE=10000
|
2021-03-02 10:19:58 +00:00
|
|
|
export HISTSIZE=10000
|
2021-02-18 14:05:37 +00:00
|
|
|
|
2022-06-04 08:10:12 +00:00
|
|
|
alias scratch="scratch $SHELL"
|
|
|
|
|
2021-08-23 16:30:52 +00:00
|
|
|
alias hgrep='history 0 | grep '
|
2021-02-26 07:23:22 +00:00
|
|
|
setopt append_history
|
|
|
|
setopt hist_find_no_dups
|
|
|
|
# setopt hist_ignore_dups
|
2021-02-18 09:43:11 +00:00
|
|
|
setopt inc_append_history
|
|
|
|
setopt extended_history
|
|
|
|
setopt hist_find_no_dups
|
|
|
|
# setopt hist_ignore_all_dups
|
2021-02-18 09:12:06 +00:00
|
|
|
setopt prompt_subst
|
2021-02-18 09:43:11 +00:00
|
|
|
setopt hist_ignore_space
|
2021-02-18 09:12:06 +00:00
|
|
|
|
2021-03-02 10:19:58 +00:00
|
|
|
bindkey -v
|
|
|
|
|
2022-11-23 09:59:33 +00:00
|
|
|
prompt='%F{blue}$(if [ "$RANGER_LEVEL" -gt 0 ]; then echo -ne "R."; fi)%(?.%F{green}.%F{red})λ%f '
|
2021-02-18 09:12:06 +00:00
|
|
|
export PROMPT_full='%B%F{magenta}%n%F{blue}@%F{magenta}%m%b %F{magenta}%~
|
|
|
|
'"$prompt"
|
2021-08-23 16:30:52 +00:00
|
|
|
export PROMPT_gitlong='$(gitprompt && echo -ne " ")%F$(git log --oneline --no-decorate -1 2>/dev/null)
|
2021-02-18 09:12:06 +00:00
|
|
|
%F{cyan}$(gitpath)'"$prompt"
|
|
|
|
# export PS1tiny=
|
|
|
|
# export PS1nano=
|
|
|
|
# export PS1nogit=
|
|
|
|
# export PS1git=
|
|
|
|
|
2021-02-19 07:27:47 +00:00
|
|
|
export HISTORY_IGNORE='(ls|vimswitch|clear)'
|
2021-02-18 09:43:11 +00:00
|
|
|
zshaddhistory() {
|
|
|
|
[[ $1 != ${~HISTORY_IGNORE} ]]
|
|
|
|
}
|
|
|
|
|
2021-02-18 09:12:06 +00:00
|
|
|
export PROMPT=$PROMPT_full
|
|
|
|
prompt() {
|
|
|
|
case $1 in
|
|
|
|
(full)
|
|
|
|
export PROMPT=$PROMPT_full;;
|
|
|
|
(gitlong)
|
|
|
|
export PROMPT=$PROMPT_gitlong;;
|
|
|
|
(*)
|
|
|
|
export PROMPT=$PROMPT_full;;
|
|
|
|
esac
|
|
|
|
export PROMPT_set=$1
|
|
|
|
}
|
|
|
|
prompt $PROMPT_set
|
2021-06-28 07:08:36 +00:00
|
|
|
|
|
|
|
chpwd() {
|
2022-06-04 08:10:12 +00:00
|
|
|
source smartprompt
|
2021-06-28 07:08:36 +00:00
|
|
|
}
|