18 lines
370 B
Bash
18 lines
370 B
Bash
#-*- mode: sh; -*-
|
|
|
|
## prezto utility module overrides
|
|
alias l='ls -1a'
|
|
alias la='ll -a'
|
|
|
|
## Disable Globbing (for some things)
|
|
alias nmap="noglob nmap"
|
|
|
|
## Other Aliases
|
|
mcd() { mkdir -p "$1" && cd "$1"; }
|
|
|
|
## Weechat on ag
|
|
alias irc='ssh ag tmux a -t irc'
|
|
|
|
#quick alias for enabling bluetooth
|
|
alias ebluetooth="sudo modprobe btusb;ssy start bluetooth;blueman-manager"
|