mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
18 lines
301 B
Bash
18 lines
301 B
Bash
#!/bin/zsh
|
|
|
|
# Push and pop directories on directory stack
|
|
alias pu='pushd'
|
|
alias po='popd'
|
|
|
|
alias ss='thin --stats "/thin/stats" start'
|
|
alias devlog='tail -f log/development.log'
|
|
|
|
# Super user
|
|
alias _='sudo'
|
|
alias ss='sudo su -'
|
|
|
|
# Show history
|
|
alias history='fc -l 1'
|
|
|
|
# TextMate
|
|
alias et='mate . &'
|