https://github.com/givensuman/fish-eza
fish plugin for the eza command
https://github.com/givensuman/fish-eza
eza fish-plugin
Last synced: 3 months ago
JSON representation
fish plugin for the eza command
- Host: GitHub
- URL: https://github.com/givensuman/fish-eza
- Owner: givensuman
- License: mit
- Created: 2025-01-03T20:20:02.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-04T16:50:26.000Z (6 months ago)
- Last Synced: 2025-01-20T00:57:35.990Z (5 months ago)
- Topics: eza, fish-plugin
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fish-eza
Adaptation of [z-shell/zsh-eza](https://github.com/z-shell/zsh-eza) for the Fish shell.
### Installation
Install with [fisher](https://github.com/jorgebucaran/fisher):
```shell
fisher install givensuman/fish-eza
```### Environment variables
| Variable | Description | Default |
| ------------- | --------------------------------------- | ----------------------------------------------------------------------------------------- |
| eza_params | `eza` params to be used with every call | `--git --icons --group --group-directories-first --time-style=long-iso --color-scale=all` |
| eza_run_on_cd | automatically run on `cd` | _undefined_ |Set `eza_run_on_cd` to anything to enable, e.g. `set -gx eza_run_on_cd true`
### Aliases
```shell
alias ls='eza $eza_params'
alias l='eza --git-ignore $eza_params'
alias ll='eza --all --header --long $eza_params'
alias llm='eza --all --header --long --sort=modified $eza_params'
alias la='eza -lbhHigUmuSa'
alias lx='eza -lbhHigUmuSa@'
alias lt='eza --tree $eza_params'
alias tree='eza --tree $eza_params'
```### Requirements
Just requires [eza](https://github.com/eza-community/eza)!
### License
[MIT](../LICENSE)