summary refs log tree commit diff stats
path: root/tag-zsh/config/zsh/zshrc
diff options
context:
space:
mode:
authorAlan Pearce2017-01-17 11:38:48 +0100
committerAlan Pearce2017-01-17 11:38:48 +0100
commit4f655369e8e87b73e2a932091b5db84c81e7736a (patch)
treedbc0a223a5a68b9dd343174c9507da8580bc857d /tag-zsh/config/zsh/zshrc
parent60966619f991659c804c8f8c82224e82dd7a8dd7 (diff)
downloaddotfiles-4f655369e8e87b73e2a932091b5db84c81e7736a.tar.lz
dotfiles-4f655369e8e87b73e2a932091b5db84c81e7736a.tar.zst
dotfiles-4f655369e8e87b73e2a932091b5db84c81e7736a.zip
zsh: Set os/arch in zshenv
Diffstat (limited to 'tag-zsh/config/zsh/zshrc')
-rw-r--r--tag-zsh/config/zsh/zshrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc
index 269d5e5..1d37e8e 100644
--- a/tag-zsh/config/zsh/zshrc
+++ b/tag-zsh/config/zsh/zshrc
@@ -55,8 +55,8 @@ gnu_ls_isodate="--time-style=long-iso"
 bsd_ls_options="-p"
 bsd_ls_isodate="-D '%F %k:%M'"
 
-case $OSTYPE in
-  darwin*)
+case $os in
+  darwin)
     if [[ -n $commands[gls] ]]
     then
       ls='\gls'
@@ -67,11 +67,11 @@ case $OSTYPE in
       ls_isodate=$bsd_ls_isodate
     fi
     ;;
-  freebsd*)
+  freebsd)
     ls_options=$bsd_ls_options
     ls_isodate=$bsd_ls_isodate
     ;;
-  linux-gnu)
+  linux)
     ls_options=$gnu_ls_options
     ls_isodate=$gnu_ls_isodate
     ;;