34 lines
868 B
Bash
34 lines
868 B
Bash
#
|
|
# misc - Set general Zsh config options here, or change plugin settings.
|
|
#
|
|
|
|
#
|
|
# Options
|
|
#
|
|
|
|
# Undo options from plugins
|
|
setopt NO_BEEP # Be quiet!
|
|
setopt NO_HIST_BEEP # Be quiet!
|
|
|
|
#
|
|
# OMZ
|
|
#
|
|
MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
|
|
|
|
#
|
|
# Zsh-Utils
|
|
#
|
|
# The belek/zsh-utils completion plugin also introduces compstyles. Let's use that!
|
|
(( ! $+functions[compstyle_zshzoo_setup] )) || compstyle_zshzoo_setup
|
|
|
|
# let make handle it's own shell completion
|
|
zstyle ':completion::complete:make:*:targets' call-command true
|
|
|
|
# fzf-tab completions
|
|
# set descriptions format to enable group support
|
|
zstyle ':completion:*:descriptions' format '[%d]'
|
|
# set list-colors to enable filename colorizing
|
|
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
|
|
|
|
|
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'lsd --tree --depth 2 --color always $realpath'
|