Update suggested config to use eza instead of unmaintained exa (#405)

This commit is contained in:
Yury 2024-02-01 05:12:22 +02:00 committed by GitHub
parent c2b4aa5ad2
commit b06e757457
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,8 +105,8 @@ zstyle ':completion:*:git-checkout:*' sort false
zstyle ':completion:*:descriptions' format '[%d]'
# set list-colors to enable filename colorizing
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
# preview directory's content with exa when completing cd
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'exa -1 --color=always $realpath'
# preview directory's content with eza when completing cd
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'eza -1 --color=always $realpath'
# switch group using `,` and `.`
zstyle ':fzf-tab:*' switch-group ',' '.'
```