Adjust VSC aliases

This commit is contained in:
dabruh 2023-11-29 09:51:47 +01:00
parent def24f0ce4
commit 1c12a125db
1 changed files with 5 additions and 4 deletions

View File

@ -22,10 +22,11 @@ alias \
alias \
w="curl https://wttr.in/"
for cmd in code codium; do
command -v $cmd >/dev/null && alias $cmd="$cmd --password-store='gnome'"
done
command -v codium >/dev/null && alias c=code
alias code="code --password-store='gnome'"
if command -v codium >/dev/null; then
alias code="codium --password-store='gnome'"
fi
alias c=code
command -v pacman >/dev/null && alias p=pacman
command -v zathura >/dev/null && alias z=zathura