mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
Merge pull request #2 from robbyrussell/master
rebasing with upstream/master
This commit is contained in:
commit
e14d9a4668
13 changed files with 94 additions and 121 deletions
|
|
@ -22,7 +22,12 @@ alias _='sudo'
|
|||
alias please='sudo'
|
||||
|
||||
## more intelligent acking for ubuntu users
|
||||
alias afind='ack-grep -il'
|
||||
if which ack-grep &> /dev/null;
|
||||
then
|
||||
alias afind='ack-grep -il'
|
||||
else
|
||||
alias afind='ack -il'
|
||||
fi
|
||||
|
||||
# only define LC_CTYPE if undefined
|
||||
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue