mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(eza): add icons option (#12469)
Co-authored-by: Computer <computer@MAI.local>
This commit is contained in:
parent
695c7456d1
commit
228d44d55d
2 changed files with 13 additions and 0 deletions
|
@ -55,6 +55,16 @@ If `yes` (default), always add `-g` flag to show the group ownership.
|
||||||
|
|
||||||
Default: `yes`
|
Default: `yes`
|
||||||
|
|
||||||
|
### `icons`
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
zstyle ':omz:plugins:eza' 'icons' yes|no
|
||||||
|
```
|
||||||
|
|
||||||
|
If `yes`, sets the `--icons` option of `eza`, adding icons for files and folders.
|
||||||
|
|
||||||
|
Default: `no`
|
||||||
|
|
||||||
### `size-prefix`
|
### `size-prefix`
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
|
|
|
@ -31,6 +31,9 @@ function _configure_eza() {
|
||||||
if zstyle -t ':omz:plugins:eza' 'git-status'; then
|
if zstyle -t ':omz:plugins:eza' 'git-status'; then
|
||||||
_EZA_TAIL+=("--git")
|
_EZA_TAIL+=("--git")
|
||||||
fi
|
fi
|
||||||
|
if zstyle -t ':omz:plugins:eza' 'icons'; then
|
||||||
|
_EZA_TAIL+=("--icons")
|
||||||
|
fi
|
||||||
zstyle -s ':omz:plugins:eza' 'time-style' _val
|
zstyle -s ':omz:plugins:eza' 'time-style' _val
|
||||||
if [[ $_val ]]; then
|
if [[ $_val ]]; then
|
||||||
_EZA_TAIL+=("--time-style='$_val'")
|
_EZA_TAIL+=("--time-style='$_val'")
|
||||||
|
|
Loading…
Reference in a new issue