From a35bd343dc1a825c2779c1469b8efcb49c7a92e5 Mon Sep 17 00:00:00 2001 From: Gaiety Date: Thu, 2 Apr 2026 20:56:34 -0600 Subject: [PATCH] zsh-autosuggestions --- .zshrc | 7 ++++++- mise-tasks/install-ohmyzsh | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 7b06cb1..4b45ce0 100644 --- a/.zshrc +++ b/.zshrc @@ -6,7 +6,12 @@ zstyle ':omz:update' mode reminder # just remind me to update when it's time ENABLE_CORRECTION="true" COMPLETION_WAITING_DOTS="true" -plugins=(git mise zoxide) +plugins=( + git + mise + zoxide + zsh-autosuggestions +) source $ZSH/oh-my-zsh.sh diff --git a/mise-tasks/install-ohmyzsh b/mise-tasks/install-ohmyzsh index a9a7978..1d7f5b6 100755 --- a/mise-tasks/install-ohmyzsh +++ b/mise-tasks/install-ohmyzsh @@ -1,3 +1,5 @@ #!/usr/bin/env bash #MISE description="Install oh-my-zsh" sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions +