etc/dot/file/zshrc

37 lines
893 B
Bash
Raw Normal View History

2020-11-04 02:03:20 +03:00
#!/bin/sh
2022-09-05 18:07:23 +03:00
. $HOME/.profile
2021-12-04 21:57:51 +03:00
#autoload -Uz compinit promptinit
#compinit
#promptinit
2020-11-04 02:03:20 +03:00
zstyle ':completion:*' menu select
zstyle ':completion:*:manuals' separate-sections true
zstyle ':completion:*:manuals.*' insert-sections true
zstyle ':completion:*:man:*' menu yes select
setopt correct
zshaddhistory() { whence ${${(z)1}[1]} >| /dev/null || return 1 }
HISTFILE="$HOME/.zhistory"
HISTSIZE=10000
SAVEHIST="$HISTSIZE"
setopt menu_complete
setopt append_history
setopt extended_history
setopt inc_append_history
setopt share_history
setopt hist_ignore_all_dups
setopt hist_ignore_space
setopt hist_reduce_blanks
setopt no_hist_beep
setopt auto_cd
setopt nonomatch
setopt notify
setopt hash_list_all
setopt nohup
setopt nobeep
setopt noglobdots
setopt noshwordsplit
test -r "$LOGIN" && . "$LOGIN"
2021-12-04 21:57:51 +03:00
export PROMPT="%# "
q(){echo $SHLVL - 1 | bc ; exit}
2020-11-04 02:03:20 +03:00
test -r "$SETENV" && . "$SETENV" && setenv zsh