2015-04-25 21:51:54 -04:00
|
|
|
#-*- mode: sh; -*-
|
|
|
|
|
2015-04-25 23:14:25 -04:00
|
|
|
## prezto utility module overrides
|
|
|
|
alias l='ls -1a'
|
|
|
|
alias la='ll -a'
|
|
|
|
|
2015-04-25 21:51:54 -04:00
|
|
|
## Disable Globbing (for some things)
|
|
|
|
alias nmap="noglob nmap"
|
|
|
|
|
|
|
|
## Other Aliases
|
|
|
|
mcd() { mkdir -p "$1" && cd "$1"; }
|
|
|
|
|
2015-07-07 11:12:12 -04:00
|
|
|
## Weechat on ag
|
|
|
|
alias irc='ssh ag tmux a -t irc'
|
2015-04-25 21:51:54 -04:00
|
|
|
|
|
|
|
#quick alias for enabling bluetooth
|
2016-02-15 11:20:51 -05:00
|
|
|
alias ebluetooth="sudo modprobe btusb;ssy start bluetooth;blueman-manager"
|
2018-03-07 14:55:31 -05:00
|
|
|
|
|
|
|
# Command Specific Aliases
|
|
|
|
for i in $HOME/.aliases/command-specific/*
|
|
|
|
do
|
2018-01-10 12:46:05 -05:00
|
|
|
if hash $(basename $i) 2>/dev/null # check if command exists
|
2018-03-07 14:55:31 -05:00
|
|
|
then
|
|
|
|
source $i
|
|
|
|
fi
|
|
|
|
done
|