diff options
Diffstat (limited to '')
-rw-r--r-- | .zshrc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc index 53eea862..7df1921e 100644 --- a/.zshrc +++ b/.zshrc @@ -1,3 +1,11 @@ +# Detect platform +if [[ "$(uname)" == "Darwin" ]]; then + function osx { true } +else + function osx { false } +fi + +# Basic zsh config HISTFILE=~/.histfile HISTSIZE=5000 SAVEHIST=5000 @@ -59,7 +67,9 @@ source ~/.zsh/aliases.zsh # Environment -EDITOR=vim +export EDITOR=vim +osx && PATH=$PATH:~/bin +osx && export CLICOLOR=1 # Prompt |