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

Update installation.mdx #73

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions src/content/docs/guide/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ After installing, remember to restart your shell.
antigen bundle atuinsh/atuin@main
```
</TabItem>
<TabItem label="Antidote">
```shell
antidote install atuinsh/atuin
```
</TabItem>
</Tabs>
</TabItem>
<TabItem label="bash">
Expand Down
15 changes: 14 additions & 1 deletion src/content/docs/integrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@ title: Integrations

Atuin automatically adds itself as an [autosuggest strategy](https://github.com/zsh-users/zsh-autosuggestions#suggestion-strategy).

If you'd like to override this, add your own config after "$(atuin init zsh)" in your zshrc.
If you'd like to override this, add your own config after `"$(atuin init zsh)"` in your `.zshrc`.

## zsh-vi-mode

If you are using [Zsh Vi Mode](https://github.com/jeffreytse/zsh-vi-mode), you may want to add the following to your `.zshrc` to prevent overriding the default atuin binds:

```shell
# Append a command directly (after sourcing zvm)
zvm_after_init_commands+=(
'eval "$(atuin init zsh)"'
)
```

## ble.sh auto-complete (Bash)

Expand All @@ -22,3 +33,5 @@ If you would not like Atuin's auto-complete source, please add the following set
ble/util/import/eval-after-load core-complete '
ble/array#remove _ble_complete_auto_source atuin-history'
```