diff options
| author | Michelle Tilley <michelle@michelletilley.net> | 2026-01-16 11:09:49 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-16 11:09:49 -0800 |
| commit | b9b342f64c0a94225d7bb27ef6922a0aca0a54f6 (patch) | |
| tree | 672d761efb1996d1a3d4053d8c6fda9e7b5abc18 | |
| parent | feat(ultracompact): Adds setting for ultracompact mode (#3079) (diff) | |
| download | atuin-b9b342f64c0a94225d7bb27ef6922a0aca0a54f6.zip | |
Update installation.mdx (#3078)
**Migrated from atuinsh/docs PR:**
https://github.com/atuinsh/docs/pull/73
**Original author:** @MustCodeAl
---
- Added [Antidote plugin manager](https://github.com/mattmc3/antidote)
install instructions
- Added instructions for
[Zsh-Vi-Mode](https://github.com/jeffreytse/zsh-vi-mode)
- Fixed formatting on zsh-autosuggestions
Co-authored-by: Albert <87888006+MustCodeAl@users.noreply.github.com>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
| -rw-r--r-- | docs/docs/guide/installation.md | 6 | ||||
| -rw-r--r-- | docs/docs/integrations.md | 13 |
2 files changed, 18 insertions, 1 deletions
diff --git a/docs/docs/guide/installation.md b/docs/docs/guide/installation.md index a0009bbc..0537b5b0 100644 --- a/docs/docs/guide/installation.md +++ b/docs/docs/guide/installation.md @@ -140,6 +140,12 @@ After installing, remember to restart your shell. antigen bundle atuinsh/atuin@main ``` + === "Antidote" + + ```shell + antidote install atuinsh/atuin + ``` + === "bash" === "ble.sh" diff --git a/docs/docs/integrations.md b/docs/docs/integrations.md index 27983add..8c031601 100644 --- a/docs/docs/integrations.md +++ b/docs/docs/integrations.md @@ -4,7 +4,18 @@ 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) |
