diff options
author | Ryan Kavanagh <rak@debian.org> | 2017-02-02 16:31:47 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2017-02-02 16:31:47 -0500 |
commit | ff7f17f9b56a3054f54e78b1f3a890d91b4d427d (patch) | |
tree | db0ab57e20c4cc83c46573266e678a1689eaedd8 /.zshrc | |
parent | Update zeta work screenlayout (diff) |
Don't use non-posix options for grep on OpenBSD
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -136,6 +136,8 @@ if [[ `uname` = "Linux" ]]; then # from bind mounts. alias rm="rm -iv --one-file-system" + alias grep="grep --colour=auto" + alias chown="chown -v" alias chmod="chmod -v" alias ls="ls --classify --color=always" # Add all colours and @@ -148,8 +150,6 @@ fi # inactivity by default. alias encfs="encfs --idle=20" -alias grep="grep --colour=auto" - fpath=($fpath $HOME/.zsh/func) # Prompt theme. |