summaryrefslogtreecommitdiffstats
path: root/.config/aliasrc
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-11-16 18:06:41 -0500
committerLuke Smith <luke@lukesmith.xyz>2020-11-16 18:06:41 -0500
commitcba0fcc03d9cbab623eae419d308c5b1f7c1b193 (patch)
treed2fe9b76a7d323fb21605bb2e26298c37399832b /.config/aliasrc
parent3215e7b4bb25f04db9caa4677caf32899de3e4c9 (diff)
downloadeibhear-cba0fcc03d9cbab623eae419d308c5b1f7c1b193.tar.gz
eibhear-cba0fcc03d9cbab623eae419d308c5b1f7c1b193.tar.zst
eibhear-cba0fcc03d9cbab623eae419d308c5b1f7c1b193.zip
old stuff removed
many files renamed, possible breakage
Diffstat (limited to '.config/aliasrc')
-rw-r--r--.config/aliasrc43
1 files changed, 0 insertions, 43 deletions
diff --git a/.config/aliasrc b/.config/aliasrc
deleted file mode 100644
index 39ac509..0000000
--- a/.config/aliasrc
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-# Use neovim for vim if present.
-[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
-
-# Verbosity and settings that you pretty much just always are going to want.
-alias \
- cp="cp -iv" \
- mv="mv -iv" \
- rm="rm -vI" \
- mkd="mkdir -pv" \
- yt="youtube-dl --add-metadata -i" \
- yta="yt -x -f bestaudio/best" \
- ffmpeg="ffmpeg -hide_banner"
-
-# Colorize commands when possible.
-alias \
- ls="ls -hN --color=auto --group-directories-first" \
- grep="grep --color=auto" \
- diff="diff --color=auto" \
- ccat="highlight --out-format=ansi"
-
-# 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" \
- f="$FILE" \
- 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}/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/zshnameddirrc" \
- weath="less -S ${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" \
- tmux="tmux -f ${XDG_CONFIG_HOME:-$HOME/.config}/tmux/tmux.conf" \