shell: Add /snap/bin to path if available
This commit is contained in:
parent
f6642c280e
commit
a2e2585d72
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user