Skip to content

Commit 541e704

Browse files
committed
Merge branch 'master' of majnematic.com:davesdots
2 parents 1642301 + ccad05b commit 541e704

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

ackrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--type-add=asm=.S

commonsh/10_alias

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ if ( command -v gobjdump >/dev/null 2>&1 ) ; then
8989
alias objdump=gobjdump
9090
fi
9191

92+
if ( command -v ack-grep >/dev/null 2>&1 ) ; then
93+
alias ack=ack-grep
94+
fi
95+
9296
alias rm='rm -ir'
9397

9498
alias df='df -h'

gitconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
cat = show
2121
list = show
2222
ls = show
23+
24+
untrack-ignored = !git-untracked-ignored
2325
[color]
2426
diff = auto
2527
status = auto

install.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
my %links = (
4040
screenrc => '.screenrc',
41+
ackrc => '.ackrc',
4142
toprc => '.toprc',
4243
dir_colors => '.dir_colors',
4344
lessfilter => '.lessfilter',

0 commit comments

Comments
 (0)