Skip to content

Commit 9ab8458

Browse files
committedAug 12, 2011
Merge with upstream.
2 parents b35ad06 + be2ab22 commit 9ab8458

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2317
-124
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ custom
55
custom/*.zsh
66
*.un~
77
cache
8+
*.swp
89

910
.DS_Store

‎lib/aliases.zsh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Push and pop directories on directory stack
2+
alias pu='pushd'
3+
alias po='popd'
4+
5+
# Basic directory operations
6+
alias ...='cd ../..'
7+
alias -- -='cd -'
8+
9+
# Super user
10+
alias _='sudo'
11+
12+
#alias g='grep -in'
13+
14+
# Show history
15+
alias history='fc -l 1'
16+
17+
# List direcory contents
18+
alias lsa='ls -lah'
19+
alias l='ls -la'
20+
alias ll='ls -l'
21+
alias sl=ls # often screw this up
22+
23+
alias afind='ack-grep -il'
24+

0 commit comments

Comments
 (0)
Please sign in to comment.