diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-05-23 16:48:35 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-05-23 16:48:35 -0500 |
commit | b46d66e03e33842a61260520146a34768056561f (patch) | |
tree | cc2a890fe7cc2da0eef89b096d163a41b58f4680 /sh/.config/shell/aliasrc | |
download | dotfiles-b46d66e03e33842a61260520146a34768056561f.tar dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.gz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.bz2 dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.lz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.xz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.zst dotfiles-b46d66e03e33842a61260520146a34768056561f.zip |
Initial commit
Diffstat (limited to 'sh/.config/shell/aliasrc')
-rw-r--r-- | sh/.config/shell/aliasrc | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sh/.config/shell/aliasrc b/sh/.config/shell/aliasrc new file mode 100644 index 0000000..c959afa --- /dev/null +++ b/sh/.config/shell/aliasrc @@ -0,0 +1,63 @@ +#!/bin/sh + +# Use neovim for vim if present. +[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d" + +# 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 + +# Verbosity and settings that you pretty much just always are going to want. +alias \ + cp="cp -iv" \ + mv="mv -iv" \ + rm="rm -vI" \ + bc="bc -ql" \ + info="pinfo"\ + mkdir="mkdir -pv" \ + yt="yt-dlp --add-metadata -i" \ + nvim="lvim" \ + yta="yt -x -f bestaudio/best" \ + ffmpeg="ffmpeg -hide_banner" \ + df="df -h" \ + du="dust -r" \ + free="free -m" \ + gdb="gdb -q -nh -x "$XDG_CONFIG_HOME"/gdb/init" \ + paru="yay" \ + yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config"' \ +# Colorize commands when possible. +alias \ + ls="exa -aF --group-directories-first" \ + ll="exa -alg --group-directories-first" \ + lt='exa -aTF --group-directories-first' \ + lr='exa -aRF' \ + grep="rg --color=auto" \ + diff="batdiff --delta" \ + cat='bat --paging=never --style=plain' \ + #bat='prettybat' \ + #ccat="highlight --out-format=ansi" \ + #ssh="mosh" \ + +# These common commands are just too long! Abbreviate them. +alias \ + ka="killall" \ + g="git" \ + trem="transmission-remote" \ + YT="youtube-viewer" \ + sdn="sudo shutdown -h now" \ + e="$EDITOR" \ + v="$EDITOR" \ + p="sudo pacman" \ + xi="sudo xbps-install" \ + xr="sudo xbps-remove -R" \ + xq="xbps-query" \ + z="zathura" + +#alias \ +# magit="nvim -c MagitOnly" \ +# ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" \ +# weath="less -S ${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" \ |