Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add fish install script #1447

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down