Change installation instructions

This commit is contained in:
Ajeet D'Souza 2022-04-22 13:01:01 +05:30
parent 23e6a923ee
commit e06c8308f9
4 changed files with 14 additions and 22 deletions

View File

@ -13,20 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Manpages: moved to `man/man1/*.1`.
- Replace `--no-aliases` with `--no-cmd`.
- Nushell: upgrade minimum supported version to v0.60.0.
- Elvish: upgrade minimum supported version to v0.18.0.
- Nushell: upgrade minimum supported version to v0.61.0.
### Fixed
- Bash/Zsh: rename `_z` completion function to avoid conflicts with other shell
plugins.
- Elvish: upgrade to new lambda syntax.
- Fzf: added `--keep-right` option by default, upgrade minimum supported version
to v0.21.0.
- Bash: only enable completions on 4.4+.
- Fzf: bypass `ls` alias in preview window.
- Retain ownership of database file.
- Elvish: upgrade to new try-catch syntax, upgrade minimum supported version to
v0.18.0.
- `zoxide query --interactive` should not conflict with `--score`.
## [0.8.0] - 2021-12-25

View File

@ -190,22 +190,20 @@ zoxide init fish | source
<details>
<summary>Nushell</summary>
First, generate the Nushell initialization script (you may need to do this
whenever you update Nushell):
Add this to your env file (find it by running `$nu.env-path` in Nushell):
```sh
zoxide init nushell --hook prompt | save ~/.zoxide.nu
```
Now, add this to your configuration (find it by running `$nu.config-path` in
Nushell):
Now, add this to the end of your config file (find it by running
`$nu.config-path` in Nushell):
```sh
zoxide init nushell --hook prompt | save ~/.zoxide.nu
source ~/.zoxide.nu
```
Note: zoxide only supports Nushell v0.60.0 and above.
Note: zoxide only supports Nushell v0.61.0 and above.
</details>

View File

@ -30,22 +30,20 @@ Add this to your configuration (usually \fB~/.config/fish/config.fish\fR):
.fi
.TP
.B nushell
First, generate the Nushell initialization script (you may need to do this
whenever you update Nushell):
Add this to your env file (find it by running \fB$nu.env-path\fR in Nushell):
.sp
.nf
\fBzoxide init nushell --hook prompt | save ~/.zoxide.nu\fR
.fi
.sp
Now, add this to your configuration (find it by running \fB$nu.config-path\fR in
Nushell):
Now, add this to the end of your config file (find it by running
\fB$nu.config-path\fR in Nushell):
.sp
.nf
\fBzoxide init nushell --hook prompt | save ~/.zoxide.nu\fR
\fBsource ~/.zoxide.nu\fR
.fi
.sp
Note: zoxide only supports Nushell v0.60.0 and above.
Note: zoxide only supports Nushell v0.61.0 and above.
.TP
.B powershell
Add this to your configuration (find it by running \fBecho $profile\fR in

View File

@ -80,15 +80,13 @@ alias {{cmd}}i = __zoxide_zi
{%- endmatch %}
{{ section }}
# To initialize zoxide, first generate the Nushell initialization script (you
# may need to do this whenever you update Nushell):
# Add this to your env file (find it by running `$nu.env-path` in Nushell):
#
# zoxide init nushell --hook prompt | save ~/.zoxide.nu
#
# Now, add this to your configuration (find it by running `$nu.config-path` in
# Nushell):
# Now, add this to the end of your config file (find it by running
# `$nu.config-path` in Nushell):
#
# zoxide init nushell --hook prompt | save ~/.zoxide.nu
# source ~/.zoxide.nu
#
# Note: zoxide only supports Nushell v0.60.0 and above.
# Note: zoxide only supports Nushell v0.61.0 and above.