Skip to content

Commit

Permalink
Merge pull request thoughtbot#3 from qrush/717cf442b071a715b097c75049…
Browse files Browse the repository at this point in the history
…26b30ad2bdaf36

Split out aliases. Add three ls aliases and some cd improvements.
  • Loading branch information
mike-burns committed Jun 27, 2011
2 parents 57949f5 + 717cf44 commit 8bc7328
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliases
Expand Up @@ -13,6 +13,9 @@ alias be="bundle exec"
alias ln='ln -v'
alias mkdir='mkdir -p'
alias ...='../..'
alias l='ls'
alias ll='ls -al'
alias lh='ls -Alh'

alias -g G='| grep'
alias -g M='| less'
Expand Down
15 changes: 13 additions & 2 deletions zshrc
Expand Up @@ -43,12 +43,23 @@ export PS1='[${SSH_CONNECTION+"%n@%m:"}%~] '
# ignore duplicate history entries
setopt histignoredups

# keep more history
export HISTSIZE=1000
# keep TONS of history
export HISTSIZE=4096

# look for ey config in project dirs
export EYRC=./.eyrc

# automatically pushd
setopt auto_pushd
export dirstacksize=5

# awesome cd movements from zshkit
setopt AUTOCD
setopt AUTOPUSHD PUSHDMINUS PUSHDSILENT PUSHDTOHOME
setopt cdablevars

# Try to correct command line spelling
setopt CORRECT CORRECT_ALL

# Enable extended globbing
setopt EXTENDED_GLOB

0 comments on commit 8bc7328

Please sign in to comment.