dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit b55ce7a0954bb23d13950a1e24129dd8d22167d0
parent 365bc87be59fd764d7867b5b6a680d9f0cdd44a9
Author: finwo <finwo@pm.me>
Date:   Tue, 29 Oct 2019 11:20:18 +0100

Added rust binary support in zshrc

Diffstat:
Mzsh/home/.zshrc | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -142,3 +142,8 @@ if [ -d "${HOME}/.symfony/bin" ]; then export PATH="${HOME}/.symfony/bin:${PATH}" fi # }}} +# Rust support {{{ +if [ -d "${HOME}/.cargo/bin" ]; then + export PATH="${HOME}/.cargo/bin:${PATH}" +fi +# }}}