From f777aad4514ce8fdaeeb9b9672be7aa0bfffbc67 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 14 Oct 2016 20:48:55 +0200 Subject: [PATCH] Include dotfiles' bin dir in PATH --- .config/fish/config.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index def317e..353688e 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -12,6 +12,9 @@ set -g theme_date_format "+%a %Y-%m-%d %H:%M:%S" set -U grcplugin_ls --color # PATH +if test -x ~/.dot/dotfiles/bin + set PATH $PATH ~/.dot/dotfiles/bin +end ## If the private dotfiles repo is installed, we'd like to use its scripts too if test -x ~/.dot/privdotfiles/bin set PATH $PATH ~/.dot/privdotfiles/bin