From 074ea3382a6ef2657b9c3f7d0169ccc8f86518f5 Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Tue, 4 Aug 2020 02:51:36 +0200 Subject: [PATCH] Add .local/bin to PATH --- .config/zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 3ed0e02..30174b0 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -146,6 +146,9 @@ if [ -e "$ZSH_CONF/zsh-history-substring-search/zsh-history-substring-search.zsh fi comp-source "$ZSH_CONF/keys.zsh" +## Setup PATH +[[ "$PATH" =~ "$HOME/\.local/bin" ]] || export PATH="$HOME/.local/bin${PATH:+:${PATH}}" + ## Env variables that have nothing to do with zsh export EDITOR=nvim