summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.zshrc b/.zshrc
index 9ec45b04..e9200413 100644
--- a/.zshrc
+++ b/.zshrc
@@ -15,9 +15,9 @@ export EDITOR=vim GIT_EDITOR=vim
 type nvim > /dev/null && EDITOR=nvim GIT_EDITOR=nvim && alias vim=nvim
 export GPG_TTY=$TTY
 
-[[ "$OSTYPE" =~ 'darwin|bsd' ]] && alias bsd=true || alias bsd=false
-bsd && export CLICOLOR=1 || alias ls='ls --color' grep='grep --color'
-bsd || alias rm='rm -I'
+export CLICOLOR=1
+[[ "$OSTYPE" = 'linux-gnu' ]] &&
+  alias ls='ls --color' grep='grep --color' rm='rm -I'
 
 alias gcl='git clone'
 alias gs='git status -sb'