prezto_config/lib/aliases.zsh

24 lines
380 B
Bash
Raw Normal View History

2009-10-12 21:17:36 +02:00
# Push and pop directories on directory stack
alias pu='pushd'
alias po='popd'
2009-10-12 21:17:36 +02:00
# Basic directory operations
alias ...='cd ../..'
alias -- -='cd -'
2009-10-12 21:17:36 +02:00
# Super user
alias _='sudo'
2009-08-31 14:59:34 +02:00
#alias g='grep -in'
2009-09-03 20:45:23 +02:00
2009-10-12 21:17:36 +02:00
# Show history
alias history='fc -l 1'
2009-10-12 21:17:36 +02:00
# List direcory contents
alias lsa='ls -lah'
2009-10-12 21:17:36 +02:00
alias l='ls -la'
alias ll='ls -l'
alias sl=ls # often screw this up
2009-10-11 15:49:24 +02:00
alias afind='ack-grep -il'