From 9a24e1e45d6ef8dbf62baa8130aaaa76fb316e63 Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 2 Aug 2023 18:32:26 +0200 Subject: zsh: Remove broken custom rustup handling --- .config/zsh/includes/path.zsh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.config/zsh/includes/path.zsh b/.config/zsh/includes/path.zsh index 916a444..7f4da06 100644 --- a/.config/zsh/includes/path.zsh +++ b/.config/zsh/includes/path.zsh @@ -1,9 +1,7 @@ +#!/usr/bin/zsh + # cargo [ -d "${HOME}/.cargo/bin" ] && PATH="${HOME}/.cargo/bin:${PATH}" -# rustup -if command -v rustup > /dev/null; then - [[ -d "${HOME}/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin" ]] && PATH="${HOME}/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin:${PATH}" -fi # pyenv [ -d "${HOME}/.local/bin" ] && PATH="${HOME}/.local/bin:${PATH}" [ -d "${HOME}/.local/share/pyenv/shims" ] && PATH="${HOME}/.local/share/pyenv/shims:${PATH}" -- cgit v1.2.3-54-g00ecf