diff --git a/ackrc b/ackrc new file mode 100644 index 0000000..ff05813 --- /dev/null +++ b/ackrc @@ -0,0 +1 @@ +--type-add=asm=.S diff --git a/commonsh/10_alias b/commonsh/10_alias index 3ab8d24..69c5223 100755 --- a/commonsh/10_alias +++ b/commonsh/10_alias @@ -89,6 +89,10 @@ if ( command -v gobjdump >/dev/null 2>&1 ) ; then alias objdump=gobjdump fi +if ( command -v ack-grep >/dev/null 2>&1 ) ; then + alias ack=ack-grep +fi + alias rm='rm -ir' alias df='df -h' diff --git a/gitconfig b/gitconfig index bf6d2e0..99c699f 100644 --- a/gitconfig +++ b/gitconfig @@ -20,6 +20,8 @@ cat = show list = show ls = show + + untrack-ignored = !git-untracked-ignored [color] diff = auto status = auto diff --git a/install.pl b/install.pl index 45445e2..2d972a0 100755 --- a/install.pl +++ b/install.pl @@ -38,6 +38,7 @@ unless(eval {symlink('', ''); 1;}) { my %links = ( screenrc => '.screenrc', + ackrc => '.ackrc', toprc => '.toprc', dir_colors => '.dir_colors', lessfilter => '.lessfilter',