From cb6eaa4dceddc797b3189add43d09919202249a1 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Tue, 7 Jul 2026 21:52:07 +0200 Subject: Consider more mise locations --- home/zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/zshrc b/home/zshrc index 5caa7fc..5b1f449 100644 --- a/home/zshrc +++ b/home/zshrc @@ -89,7 +89,11 @@ fi if [[ -s "/opt/homebrew/bin/brew" ]]; then eval "$(/opt/homebrew/bin/mise activate zsh)" else - eval "$(~/.local/bin/mise activate zsh)" + if [[ -s "/usr/bin/mise" ]]; then + eval "$(/usr/bin/mise activate zsh)" + else + eval "$(~/.local/bin/mise activate zsh)" + fi fi # Cargo -- cgit