zsh/.aliases/general

18 lines
350 B
Plaintext
Raw Normal View History

2015-04-25 21:51:54 -04:00
#-*- mode: sh; -*-
## 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"; }
## Weechat on ag
alias irc='ssh ag tmux a -t irc'
2015-04-25 21:51:54 -04:00
#quick alias for enabling bluetooth
alias ebluetooth="sudo modprobe btusb;blueman-manager"