From a2e2585d7255a84f2086f10849aca94bfc1a4f7c Mon Sep 17 00:00:00 2001 From: Jens Sauer Date: Mon, 23 Nov 2020 21:34:37 +0100 Subject: [PATCH] shell: Add /snap/bin to path if available --- shell/.profile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell/.profile b/shell/.profile index 5a6f204..15a3d29 100644 --- a/shell/.profile +++ b/shell/.profile @@ -24,5 +24,9 @@ if [ -d "$HOME/.local/bin" ] ; then PATH="$HOME/.local/bin:$PATH" fi +if [ -d "/snap/bin" ]; then + PATH="$PATH:/snap/bin" +fi + export VISUAL=vim export EDITOR="$VISUAL"