summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-03-12 22:24:57 +0000
committerJune McEnroe <june@causal.agency>2017-03-12 22:24:57 +0000
commit96b454736dcf5d15913c15de653d0a51685264a3 (patch)
tree3b14dc2feab37290d00907ce10f1f8ba0e9ed244
parentUse Escape and i to enter/exit tmux copy mode (diff)
downloadsrc-96b454736dcf5d15913c15de653d0a51685264a3.tar.gz
src-96b454736dcf5d15913c15de653d0a51685264a3.zip
Fix OSTYPE check for ARM
OSTYPE is linux-gnueabihf.
-rw-r--r--.zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index e31028d6..63c69a1d 100644
--- a/.zshrc
+++ b/.zshrc
@@ -24,7 +24,7 @@ type nvim > /dev/null \
 export GPG_TTY=$TTY
 
 export CLICOLOR=1
-[ "$OSTYPE" = 'linux-gnu' ] \
+[[ "$OSTYPE" =~ 'linux-gnu' ]] \
   && alias ls='ls --color=auto' grep='grep --color' rm='rm -I'
 
 alias gs='git status --short --branch' gd='git diff'