mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
add Rust
This commit is contained in:
parent
6111dcbf18
commit
3abc66033e
2 changed files with 4 additions and 0 deletions
|
@ -3,3 +3,5 @@
|
||||||
alias '$'=''
|
alias '$'=''
|
||||||
|
|
||||||
alias find="noglob find"
|
alias find="noglob find"
|
||||||
|
|
||||||
|
alias rustfmt="rustfmt --force"
|
||||||
|
|
2
path.zsh
2
path.zsh
|
@ -6,6 +6,8 @@ append() { eval "export $1=\"\$$1:$2\""; }
|
||||||
# user binaries
|
# user binaries
|
||||||
append PATH "$HOME/bin"
|
append PATH "$HOME/bin"
|
||||||
append PATH "$HOME/.local/bin"
|
append PATH "$HOME/.local/bin"
|
||||||
|
# Rust binaries
|
||||||
|
prepend PATH="$HOME/.cargo/bin:$PATH"
|
||||||
# global Yarn packages
|
# global Yarn packages
|
||||||
append PATH "$HOME/.config/yarn/global/node_modules/.bin"
|
append PATH "$HOME/.config/yarn/global/node_modules/.bin"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue