diff options
author | Ryan Kavanagh <rak@debian.org> | 2012-09-20 09:48:54 +0100 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2012-09-20 09:48:54 +0100 |
commit | a8f1861f964adbd4d90e1a6ebcddce5dcc51ebd9 (patch) | |
tree | 4ffe1eb47617ee38fa057540f50e8f892c65a469 /.zshrc | |
parent | Update redshift location (diff) |
Fix grep on OpenBSD
Diffstat (limited to '')
-rw-r--r-- | .zshrc | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -134,7 +134,11 @@ if [[ `uname` = "Linux" ]]; then alias chown="chown -v" alias chmod="chmod -v" + + alias grep="grep --colour=always" # Colour grep too. fi +alias ls="SUBSTS_LS --classify --color=always" # Add all colours and + # have fancy symbols for files, etc. # Cause encfs unmount a mounted encrypted partition after twenty minutes of # inactivity by default. @@ -174,9 +178,6 @@ fi zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" zstyle ':completion:*:*:kill:*' list-colors '=%*=01;31' -alias ls="SUBSTS_LS --classify --color=always" # Add all colours and - # have fancy symbols for files, etc. -alias grep="grep --colour=always" # Colour grep too. # Load the completion system autoload -U compinit; compinit |