diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-12-14 08:19:51 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-14 08:19:51 +0000 |
| commit | 1d0f05b6fb90c6ea0a7429ff957b59b03366f3ce (patch) | |
| tree | 2fbc07cfbc40c8b13bd0975dbfc2b4e92024cb5f | |
| parent | docs: add Void Linux install instruction (#1445) (diff) | |
| download | atuin-1d0f05b6fb90c6ea0a7429ff957b59b03366f3ce.zip | |
docs: add fish install script (#1447)
Diffstat (limited to '')
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | docs/docs/guide/index.md | 10 |
2 files changed, 14 insertions, 0 deletions
@@ -105,8 +105,12 @@ This will sign you up for the default sync server, hosted by me. Everything is e Read more below for offline-only usage, or for hosting your own server. ``` +# bash/zsh/etc bash <(curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh) +# fish +bash (curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | psub) + atuin register -u <USERNAME> -e <EMAIL> atuin import auto atuin sync diff --git a/docs/docs/guide/index.md b/docs/docs/guide/index.md index 56658f20..ba675d43 100644 --- a/docs/docs/guide/index.md +++ b/docs/docs/guide/index.md @@ -53,10 +53,20 @@ bindings](https://atuin.sh/docs/key-binding#disable-up-arrow) Let's get started! First up, you will want to install Atuin. We have an install script which handles most of the commonly used platforms and package managers: +## bash/zsh + ``` bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh) ``` +## fish + +``` +bash (curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | psub) +``` + +## Importing + The script will install the binary and attempt to configure your shell. Atuin uses a shell plugin to ensure that we capture new shell history. But for older history, you will need to import it |
