61 lines
1.2 KiB
Bash
61 lines
1.2 KiB
Bash
HISTFILE=~/.histfile
|
|
HISTSIZE=100000
|
|
SAVEHIST=100000
|
|
unsetopt histsavenodups
|
|
|
|
|
|
setopt autocd extendedglob notify correct autonamedirs
|
|
setopt list_ambiguous autopushd pushd_ignore_dups
|
|
setopt hist_ignore_space share_history
|
|
#setopt hist_ignore_all_dups
|
|
setopt no_auto_remove_slash auto_param_slash
|
|
setopt completeinword
|
|
setopt chase_links
|
|
setopt short_loops
|
|
setopt cdable_vars
|
|
|
|
export ZDOTDIR=${ZDOTDIR:-$HOME/.zsh}
|
|
|
|
# get a file from ZDOTDIR, return file in /etc/zsh if it does not exist
|
|
zdotfile() {
|
|
if [[ -e $ZDOTDIR/$1 ]]; then
|
|
echo $ZDOTDIR/$1
|
|
else
|
|
echo /etc/zsh/$1
|
|
fi
|
|
}
|
|
try-source() {
|
|
for i in "$@"; do
|
|
if [[ -e "$i" ]]; then
|
|
source $i
|
|
fi
|
|
done
|
|
}
|
|
|
|
local dirfile=$(zdotfile dirs)
|
|
try-source $dirfile
|
|
|
|
. $(zdotfile completion.zsh)
|
|
source $(zdotfile zplug.zsh)
|
|
|
|
bindkey -v
|
|
|
|
function exists { command -v "$@" >/dev/null }
|
|
ZMODLOAD_BLACKLIST=( ssh-agent )
|
|
|
|
stty -ixon
|
|
|
|
. $(zdotfile modules/loader.zsh) && mod_init
|
|
|
|
for i in ${ZDOTDIR:+$ZDOTDIR/aliases/*~*.zwc(N)} /etc/zsh/aliases/*~*.zwc(N); do
|
|
. $i
|
|
done
|
|
|
|
echo $PATH | grep -q 'local' || . /etc/zsh/zprofile
|
|
echo $PATH | grep -q 'sbin' || . /etc/zsh/zprofile
|
|
|
|
|
|
FZF_ALT_C_COMMAND="fd -t d"
|
|
|
|
exists todo && todo
|