dotfiles/home/private_dot_config/zsh/conf.d/misc.zsh
2023-02-28 12:25:20 -06:00

28 lines
756 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!
# start gpg agent
export GPG_TTY=$(tty)
gpgconf --launch gpg-agent
# OMZ
MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
# 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'