diff options
Diffstat (limited to 'docs')
| -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) |
