Add rust to $PATH
dblume

dblume commited on 2023-01-06 14:31:09
Showing 1 changed files, with 2 additions and 1 deletions.

... ...
@@ -112,8 +112,9 @@ alias tmux='tmux -2u'
112 112
 # colored GCC warnings and errors
113 113
 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
114 114
 
115
-# Add to PATH only if not already in PATH.
115
+# Add to PATH only if not already in PATH. .cargo/bin for rustc
116 116
 append_to_path $HOME/bin
117
+append_to_path $HOME/.cargo/bin
117 118
 
118 119
 # For interactive shells ('i' in $-), disable stty flow control (ctrl+s,ctrl+q)
119 120
 case "$-" in
120 121