Skip to content

Commit df45a2f

Browse files
committed
Fix zoxide install
1 parent 81ac548 commit df45a2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

user.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ fi
238238

239239
print_info "Installing zoxide"
240240
if ! command -v zoxide &> /dev/null; then
241-
curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash
241+
# curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash
242+
# The curl install method hits rate limit on GitHub API
243+
cargo install zoxide --locked
242244
else
243245
print_info "Zoxide already installed!"
244246
fi

0 commit comments

Comments
 (0)