view .shell.d/50.common_env.sh @ 126:34b698771af9

emacs keybinding fixes * Stop passing any keys through to the Mac layer * M-shift-f is now textmate-find-in-project * M-p bounces to matching paren (includes new elisp function to do that, is there a built in one?)
author Augie Fackler <durin42@gmail.com>
date Thu, 09 Jul 2009 13:32:06 -0500
parents a36d89137c84
children 82fd8ff94de8
line wrap: on
line source

# generic settings, pulled into a .d file so it's easy to share between bash and zsh
# Get me colors in ls
export CLICOLOR="yes"
export LSCOLORS="exgxcxDxCxEGEDcbcgExEx"

# Generic environment variables
export PAGER='less -M -X'
export EDITOR='vim'
export SVN_MERGE='svn-hgmerge.py'
export CVS_RSH='ssh'
export LESS="-R"

insert_path_element ~/unixSoft/bin
unset MANPATH # smart man(1)s autodetect that from PATH.

# Python stuff
export PYTHONSTARTUP="$HOME/.python/startup.py"

MYPYTHONPATH="$HOME/unixSoft/lib/python:/opt/durin/lib/svn-python"
if [[ "$PYTHONPATH" == "" ]] ; then
        export PYTHONPATH="$MYPYTHONPATH"
else
        export PYTHONPATH="$PYTHONPATH:$MYPYTHONPATH"
fi

export HGRCPATH="$HOME/.hgrc:$HOME/.private/hgrc"