diff --git a/src/content/docs/guide/installation.mdx b/src/content/docs/guide/installation.mdx index 161fef1..c405322 100644 --- a/src/content/docs/guide/installation.mdx +++ b/src/content/docs/guide/installation.mdx @@ -143,6 +143,11 @@ After installing, remember to restart your shell. antigen bundle atuinsh/atuin@main ``` + + ```shell + antidote install atuinsh/atuin + ``` + diff --git a/src/content/docs/integrations.mdx b/src/content/docs/integrations.mdx index b1bf99b..249dcaf 100644 --- a/src/content/docs/integrations.mdx +++ b/src/content/docs/integrations.mdx @@ -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) @@ -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' ``` + +