feat: add bash configs
This commit is contained in:
parent
3e4859d7bb
commit
154869acc5
3 changed files with 122 additions and 0 deletions
11
.cargo/env
Normal file
11
.cargo/env
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
# rustup shell setup
|
||||
# affix colons on either side of $PATH to simplify matching
|
||||
case ":${PATH}:" in
|
||||
*:"$HOME/.cargo/bin":*)
|
||||
;;
|
||||
*)
|
||||
# Prepending path in case a system-installed rustc needs to be overridden
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
;;
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue