diff options
Diffstat (limited to 'zsh/environment.zsh')
-rwxr-xr-x | zsh/environment.zsh | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/zsh/environment.zsh b/zsh/environment.zsh new file mode 100755 index 00000000..080e2344 --- /dev/null +++ b/zsh/environment.zsh @@ -0,0 +1,43 @@ +if [[ $defpath == "" && -d ~/bin ]] +then + defpath=($path) + path=( + $defpath + ~/bin + ) + if [[ -d ~/.gem/ruby/*/bin ]] + then + path=( + $path + ~/.gem/ruby/*/bin + ) + fi +fi + +export PATH + +myfuncs=( ~alan/projects/dotfiles/zsh/functions/*(/) ) +fpath=( + $myfuncs + ~alan/projects/dotfiles/zsh/completion/ + $fpath +) +if [[ -d /usr/local/share/zsh-completions ]] +then + fpath=(/usr/local/share/zsh-completions $fpath) +fi + +export FPATH + +case $OSTYPE in + *gnu*) + os=gnu + ;; + freebsd*) + os=freebsd + ;; + darwin*) + os=osx +esac + +export os |