feat: add bash configs

This commit is contained in:
Mohammad Rafiq 2025-02-06 15:35:31 +08:00
parent 3e4859d7bb
commit 154869acc5
3 changed files with 122 additions and 0 deletions

11
.cargo/env Normal file
View 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