mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
90 lines
2.5 KiB
Bash
90 lines
2.5 KiB
Bash
#!/usr/bin/env zsh
|
|
|
|
ZSH_CACHE_DIR="$HOME/.cache/dotfiles"
|
|
if [[ ! -d "$ZSH_CACHE_DIR" ]]; then
|
|
mkdir -pv "$ZSH_CACHE_DIR"
|
|
fi
|
|
|
|
source "$ZSH_DOTFILES/zplg.zsh"
|
|
|
|
plugin completions 'zsh-users/zsh-completions'
|
|
|
|
# compinit {{{
|
|
# note that completion system must be initialized after zsh-completions and
|
|
# before oh-my-zsh
|
|
autoload -U compinit
|
|
|
|
run_compdump=1
|
|
# glob qualifiers description:
|
|
# N turn on NULL_GLOB for this expansion
|
|
# . match only plain files
|
|
# m-1 check if the file was modified today
|
|
# see "Filename Generation" in zshexpn(1)
|
|
for match in $HOME/.zcompdump(N.m-1); do
|
|
run_compdump=0
|
|
break
|
|
done; unset match
|
|
|
|
if (( $run_compdump )); then
|
|
echo "$0: rebuilding zsh completion dump"
|
|
# -D flag turns off compdump loading
|
|
compinit -D
|
|
compdump
|
|
else
|
|
# -C flag disables some checks performed by compinit - they are not needed
|
|
# because we already have a fresh compdump
|
|
compinit -C
|
|
fi
|
|
unset run_compdump
|
|
# }}}
|
|
|
|
# Oh-My-Zsh {{{
|
|
|
|
# disable automatic updates because OMZ is managed by my plugin manager
|
|
DISABLE_AUTO_UPDATE=true
|
|
|
|
# use hyphen-insensitive completion (makes `_` and `-` interchangeable)
|
|
HYPHEN_INSENSITIVE=true
|
|
|
|
# enable command auto-correction
|
|
ENABLE_CORRECTION=true
|
|
|
|
# display red dots while waiting for completion
|
|
COMPLETION_WAITING_DOTS=true
|
|
|
|
# disable marking untracked files under VCS as dirty (this makes repository
|
|
# status check for large repositories much faster)
|
|
DISABLE_UNTRACKED_FILES_DIRTY=true
|
|
|
|
# command execution time stamp shown in the history
|
|
HIST_STAMPS=dd.mm.yyyy
|
|
|
|
# ls colors are handled by my dotfiles, so disable that part of OMZ to avoid
|
|
# wasting time
|
|
DISABLE_LS_COLORS=true
|
|
|
|
omz_features=(key-bindings termsupport)
|
|
omz_plugins=(git extract fasd)
|
|
|
|
plugin oh-my-zsh 'robbyrussell/oh-my-zsh' \
|
|
load='lib/'${^omz_features}'.zsh' \
|
|
load='plugins/'${^omz_plugins}'/*.plugin.zsh' \
|
|
before_load='ZSH="$plugin_dir"' \
|
|
after_load='plugin-cfg-path fpath prepend completions functions' \
|
|
after_load='plugin-cfg-path fpath prepend plugins/'${^omz_plugins}
|
|
|
|
unset omz_plugins
|
|
|
|
# }}}
|
|
|
|
plugin fzf 'junegunn/fzf' build='./install --bin' \
|
|
after_load='plugin-cfg-path path prepend bin' \
|
|
after_load='plugin-cfg-path manpath prepend man'
|
|
|
|
plugin alias-tips 'djui/alias-tips'
|
|
|
|
FAST_WORK_DIR="$ZSH_CACHE_DIR"
|
|
if [[ "$TERM" != "linux" ]]; then
|
|
plugin fast-syntax-highlighting 'zdharma/fast-syntax-highlighting'
|
|
set-my-syntax-theme() { fast-theme "$ZSH_DOTFILES/my-syntax-theme.ini" "$@"; }
|
|
fi
|