diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-11-06 11:18:18 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-11-06 11:18:18 -0600 |
commit | d0e00cb8710be008a0b25f37ce254b5622bd051b (patch) | |
tree | 2268b90c59f4d7bf84e8a4e944540e093006f4c6 /sh/.config | |
parent | WSL: add .exe fallback (diff) | |
download | dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar.gz dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar.bz2 dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar.lz dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar.xz dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.tar.zst dotfiles-d0e00cb8710be008a0b25f37ce254b5622bd051b.zip |
Migrate to chezmoi (https://chezmoi.io)
Diffstat (limited to 'sh/.config')
-rw-r--r-- | sh/.config/shell/aliasrc | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/sh/.config/shell/aliasrc b/sh/.config/shell/aliasrc deleted file mode 100644 index 4d0851d..0000000 --- a/sh/.config/shell/aliasrc +++ /dev/null @@ -1,63 +0,0 @@ -#!/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 emerge apt pacman updatedb su ; do - alias $x="sudo $x" -done - -if command -v doas &>/dev/null -then - alias sudo='doas' -else - alias sudo='sudo ' -fi - -# 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"' \ - -# 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="delta" \ - cat='bat --paging=never --style=plain' \ - -# 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" \ - em="sudo emerge" \ - p="sudo pacman" \ - xi="sudo xbps-install" \ - xr="sudo xbps-remove -R" \ - xq="xbps-query" \ - z="zathura" - |