Sha256: e4ab0edfdf6c1da438e555aabc4e955826f83fb383cd0dc25a219c77cfd81b1b

Contents?: true

Size: 942 Bytes

Versions: 1

Compression:

Stored size: 942 Bytes

Contents

# = Aliases
#
# General purpose, time-saving aliases for everyday use.

# Access the superuser for a single command.
alias _='sudo'

# Show command history.
alias history='fc -l 1'

# Use grep with ack.
alias afind='ack-grep -il'

# Reload DOTS after a change.
alias reload="source $HOME/.zshenv; source $HOME/.zshrc"
alias refresh="reload && clear"

# Reload TextMate bundles.
alias tmbundle="osascript -e 'tell app \"TextMate\" to reload bundles'"

# Find all ._* files in the directory and remove them.
alias rmbs="find . -type f -name '._*' -exec rm {} + && echo \"Removed all ._ files\""

# Make `ed` easier to use.
alias ed='ed -p "ed> "'

# Dotfiles persistence
alias persist='dots persist'
alias forget='dots forget'

# File viewing and editing
alias v=$PAGER

# Terminal support
alias c='clear'
alias ti='set_title'
alias o='open .'

# Ripple
alias ripple='open /Applications/Google\ Chrome\ Canary.app --args -disable-web-security'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zsh_dots-0.5.0 lib/dots/aliases.zsh