From 3c8e7b9344aff0a9fe70851fe22971c28b77b8a1 Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Mon, 29 Dec 2025 09:19:23 +0700 Subject: [PATCH] feat: add ~/.cargo/bin and ~/.local/bin to PATH --- zsh/.zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 63ef6e5..e901c3d 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1,6 +1,8 @@ # If you come from bash you might have to change your $PATH. # export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH +export PATH="$HOME/.local/bin:$HOME/.cargo/bin:$PATH" + # Path to your Oh My Zsh installation. export ZSH="$HOME/.oh-my-zsh"