feat: alternative initialization

This commit is contained in:
iff 2023-08-04 15:40:45 +02:00
parent e56ac04078
commit 683fdad837
3 changed files with 93 additions and 8 deletions

View file

@ -23,6 +23,12 @@ alias f="$(pay_respects <your_shell_here>)"
# for example, using `zsh`:
alias f="$(pay_respects zsh)"
# Alternatively, you can also use the following initialization in your config file
# for bash and zsh
eval "$(pay_respects <shell> --alias)"
# for fish
pay_respects fish --alias | source
# for `nushell`, the alias can be added automatically with:
pay_respects nushell
```