voidrice/.config/shell/aliasrc

51 lines
1.3 KiB
Text
Raw Normal View History

2019-02-02 21:13:30 +00:00
#!/bin/sh
2019-08-18 16:33:35 +00:00
# Use neovim for vim if present.
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
2019-08-18 16:33:35 +00:00
2021-03-07 20:40:43 +00:00
# Use $XINITRC variable if file exists.
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"
# sudo not required for some system commands
for x in mount umount sv pacman updatedb su ; do
alias $x="sudo $x"
done
2019-08-18 16:33:35 +00:00
# Verbosity and settings that you pretty much just always are going to want.
alias \
cp="cp -iv" \
mv="mv -iv" \
2020-05-01 20:58:21 +00:00
rm="rm -vI" \
2021-03-07 20:40:43 +00:00
bc="bc -ql" \
2019-03-30 04:35:51 +00:00
mkd="mkdir -pv" \
2019-08-18 16:33:35 +00:00
yt="youtube-dl --add-metadata -i" \
yta="yt -x -f bestaudio/best" \
ffmpeg="ffmpeg -hide_banner"
# Colorize commands when possible.
alias \
2019-02-02 21:13:30 +00:00
ls="ls -hN --color=auto --group-directories-first" \
grep="grep --color=auto" \
diff="diff --color=auto" \
2019-08-18 16:33:35 +00:00
ccat="highlight --out-format=ansi"
# These common commands are just too long! Abbreviate them.
alias \
ka="killall" \
g="git" \
trem="transmission-remote" \
2019-02-02 21:13:30 +00:00
YT="youtube-viewer" \
2019-08-18 16:33:35 +00:00
sdn="sudo shutdown -h now" \
e="$EDITOR" \
v="$EDITOR" \
p="sudo pacman" \
xi="sudo xbps-install" \
xr="sudo xbps-remove -R" \
2020-04-25 12:03:55 +00:00
xq="xbps-query" \
z="zathura"
2019-08-18 16:33:35 +00:00
alias \
magit="nvim -c MagitOnly" \
ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/zshnameddirrc" \
2020-04-08 23:06:11 +00:00
weath="less -S ${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" \