This is a reimplementation of the OhMyZsh alias cheatsheet plugin.
```bash $ alias [nvim] vim='nvim' wiki='nvim +VimwikiIndex'
[vim] emacs='vim' vi='vim'
[ls] l='ls -alh' ll='ls -l'
[path] spath='path --sort' tpath='path --tree' ```
cargo install format-aliases
This repo is a flake. The derivation with the exec is format-aliases.packages.${system}.default
Run the format-aliases
init sequence in your shell's rc file. A new function will be included in your shell that overrides the alias
builtin.
```sh
alias() { if [ $# -eq 0 ]; then # Pipe the output of the builtin alias command to be formatted builtin alias | format-aliases else # Pass the arguments to the builtin alias command builtin alias ${@} fi } ```
zsh
eval "$(format-aliases init zsh)"
bash
eval "$(format-aliases init bash)"
sh
eval "$(format-aliases init sh)"
Run the new alias
command without any args to display all active aliases. Running with input args will pass args to the shell's alias
builtin.
Printing in color is enabled by default. Set env var NO_COLOR
to disable.
bash
NO_COLOR alias