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
|
|
|
|
alias -g N='notify-send "Command finished"'
|
|
|
|
mcd() { mkdir -p "$1" && cd "$1"; }
|
|
|
|
alias git-yolo='git commit -am "`curl -s http://whatthecommit.com/index.txt`"'
|
|
|
|
alias backup="rdiff-backup --exclude-globbing-filelist /home/adam/Documents/backuplist.txt /home/adam/" #target
|
|
|
|
alias pc='pass -c'
|
|
|
|
|
|
|
|
## TodoTxt
|
|
|
|
alias t='todo.sh'
|
|
|
|
alias hw='t hw'
|
|
|
|
alias hwr="hw rel"
|
|
|
|
|
|
|
|
## Emacs aliases
|
|
|
|
alias e="emacsclient"
|
|
|
|
alias en="e -n"
|
|
|
|
alias et="e -t"
|
|
|
|
alias ec="e -c"
|
|
|
|
alias ecn="ec -n"
|
|
|
|
|
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
|
|
|
|
alias ebluetooth="sudo modprobe btusb;blueman-manager"
|