2023-11-29 16:35:38 -06:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
zstyle ':antidote:bundle' file ${ZDOTDIR:-~}/.zplugins
|
|
|
|
zstyle ':antidote:static' file ${ZDOTDIR:-~}/.zplugins.zsh
|
|
|
|
zstyle ':antidote:bundle' use-friendly-names 'yes'
|
|
|
|
zstyle ':antidote:plugin:*' defer-options '-p'
|
|
|
|
|
|
|
|
# Set this to whatever you want to use to edit a command
|
|
|
|
zstyle :zle:edit-command-line editor vim
|
2024-06-11 12:19:33 -05:00
|
|
|
|
|
|
|
# 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}
|
|
|
|
|
|
|
|
if (( $+commands[eza] )); then
|
|
|
|
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'eza --tree --level 2 --color always --icons always $realpath'
|
|
|
|
fi
|
|
|
|
|