mirror of https://gitlab.com/dabruh/dotfiles.git
Use double quotes
This commit is contained in:
parent
19c3047c78
commit
34ac6a1809
|
@ -6,21 +6,21 @@ alias \
|
||||||
ls="ls --color=auto" \
|
ls="ls --color=auto" \
|
||||||
bc="bc -ql" \
|
bc="bc -ql" \
|
||||||
cp="cp -iv" \
|
cp="cp -iv" \
|
||||||
df='df -h' \
|
df="df -h" \
|
||||||
e="${EDITOR:-vim}" \
|
e="${EDITOR:-vim}" \
|
||||||
ffmpeg="ffmpeg -hide_banner" \
|
ffmpeg="ffmpeg -hide_banner" \
|
||||||
free='free -m' \
|
free="free -m" \
|
||||||
g="git" \
|
g="git" \
|
||||||
ka="killall" \
|
ka="killall" \
|
||||||
mkd="mkdir -pv" \
|
mkd="mkdir -pv" \
|
||||||
mv="mv -iv" \
|
mv="mv -iv" \
|
||||||
rm="rm -vI" \
|
rm="rm -vI" \
|
||||||
shrd="shred -zuvn3" \
|
shrd="shred -zuvn3" \
|
||||||
tmux='tmux -f ~/.config/tmux/tmux.conf'
|
tmux="tmux -f ~/.config/tmux/tmux.conf"
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
alias \
|
alias \
|
||||||
w='curl https://wttr.in/'
|
w="curl https://wttr.in/"
|
||||||
|
|
||||||
for cmd in code codium; do
|
for cmd in code codium; do
|
||||||
command -v $cmd && alias $cmd="$cmd --password-store='gnome'"
|
command -v $cmd && alias $cmd="$cmd --password-store='gnome'"
|
||||||
|
|
Loading…
Reference in New Issue