17 lines
615 B
Bash
17 lines
615 B
Bash
#local
|
|
export path=($path $HOME/.config/dotfiles/bin /opt/phalcon-devtools)
|
|
export PTOOLSPATH="/opt/phalcon-devtools/"
|
|
|
|
#homebrew
|
|
export path=($path /home/linuxbrew/.linuxbrew/{sbin,bin})
|
|
export fpath=($fpath /home/linuxbrew/.linuxbrew/share/zsh/site-functions)
|
|
export manpath=($manpath /home/linuxbrew/.linuxbrew/share/man)
|
|
export infopath=($infopath /home/linuxbrew/.linuxbrew/share/info)
|
|
export XDG_DATA_DIRS=($XDG_DATA_DIRS /home/linuxbrew/.linuxbrew/share)
|
|
|
|
#gems
|
|
export GEM_HOME=$(ruby -e 'print Gem.user_dir')
|
|
export path=($path $GEM_HOME/bin)
|
|
|
|
#stuff
|
|
export os=$(grep -E "^ID=" /etc/*release | cut -d= -f2)
|