shell: Add /snap/bin to path if available

This commit is contained in:
Jens Sauer 2020-11-23 21:34:37 +01:00
parent f6642c280e
commit a2e2585d72

View File

@ -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"