Update the zsh config to not use oh-my-zsh
This commit is contained in:
parent
76aa4e9504
commit
16a90e60c6
9 changed files with 163 additions and 201 deletions
7
zsh/platform.zsh
Normal file
7
zsh/platform.zsh
Normal file
|
@ -0,0 +1,7 @@
|
|||
export PLATFORM="unkown"
|
||||
unamestr=$(uname -s)
|
||||
if [[ "$unamestr" == 'Linux' ]]; then
|
||||
export PLATFORM="linux"
|
||||
elif [[ "$unamestr" == 'Darwin' ]]; then
|
||||
export PLATFORM="osx"
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue