diff --git a/.config/shell/aliases/common b/.config/shell/aliases/common index 4ec2060..41cffd4 100644 --- a/.config/shell/aliases/common +++ b/.config/shell/aliases/common @@ -6,21 +6,21 @@ alias \ ls="ls --color=auto" \ bc="bc -ql" \ cp="cp -iv" \ - df='df -h' \ + df="df -h" \ e="${EDITOR:-vim}" \ ffmpeg="ffmpeg -hide_banner" \ - free='free -m' \ + free="free -m" \ g="git" \ ka="killall" \ mkd="mkdir -pv" \ mv="mv -iv" \ rm="rm -vI" \ shrd="shred -zuvn3" \ - tmux='tmux -f ~/.config/tmux/tmux.conf' + tmux="tmux -f ~/.config/tmux/tmux.conf" # Misc alias \ - w='curl https://wttr.in/' + w="curl https://wttr.in/" for cmd in code codium; do command -v $cmd && alias $cmd="$cmd --password-store='gnome'"