Attempting to carve out a sensible chunk of stuff for a dotfiles repo.
Sure hope I didn't miss any super secret crap :-P
This commit is contained in:
30
bash_vars_darwin
Normal file
30
bash_vars_darwin
Normal file
@@ -0,0 +1,30 @@
|
||||
export MAGICK_HOME="/opt/ImageMagick-6.6.7"
|
||||
export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"
|
||||
export VIMRUNTIME="/usr/local/MacVim.app/Contents/Resources/vim/vim73"
|
||||
export EDITOR='mvim --remote-wait-silent'
|
||||
export VISUAL='mvim --remote-wait-silent'
|
||||
export TF_DIFF_COMMAND='colordiff -u --label "%6 / %7" "%1" "%2"'
|
||||
|
||||
_PF_VERSIONS="/Library/Frameworks/Python.framework/Versions"
|
||||
if [[ -d $_PF_VERSIONS ]]
|
||||
then
|
||||
for _version in $(/bin/ls $_PF_VERSIONS | grep -v Current)
|
||||
do
|
||||
PATH="$_PF_VERSIONS/$_version/bin:$PATH"
|
||||
if [[ "$_version" == "2.7" ]]
|
||||
then
|
||||
PYTHONPATH="$_PF_VERSIONS/$_version/lib/python${_version}:$PYTHONPATH"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset _PF_VERSIONS
|
||||
unset _version
|
||||
|
||||
PATH="$PATH:/opt/TEE-CLC-10.0.0:$MAGICK_HOME/bin"
|
||||
export PATH
|
||||
|
||||
export PYTHONPATH
|
||||
|
||||
|
||||
# vim:filetype=sh
|
Reference in New Issue
Block a user