Created
July 23, 2010 04:28
-
-
Save zfisher/487008 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
alias ls='ls -G' | |
alias py='python3 -i ~/.pythonrc.py' | |
export CLICOLOR=1; | |
export LESSEDIT='mate -l %lm %f' | |
export TEXEDIT='mate -w -l %d "%s"' | |
alias more=less | |
alias doathena="ssh athena.dialup.mit.edu" | |
alias calci bc | |
function calc() { echo 'scale=10;' $* | bc -l } | |
BC_ENV_ARGS="-l -q /Users/zfisher/.bc/extensions.bc" | |
export BC_ENV_ARGS | |
setopt APPEND_HISTORY | |
unsetopt BG_NICE # do NOT nice bg commands | |
setopt CORRECT # command CORRECTION | |
setopt EXTENDED_HISTORY # puts timestamps in the history | |
setopt HIST_ALLOW_CLOBBER | |
setopt HIST_REDUCE_BLANKS | |
setopt INC_APPEND_HISTORY SHARE_HISTORY | |
setopt ALL_EXPORT | |
setopt MENUCOMPLETE | |
setopt notify globdots correct pushdtohome cdablevars autolist | |
setopt correctall autocd recexact longlistjobs | |
setopt autoresume histignoredups pushdsilent noclobber | |
setopt autopushd pushdminus extendedglob rcquotes mailwarning | |
unsetopt bgnice autoparamslash | |
zmodload -a zsh/stat stat | |
zmodload -a zsh/zpty zpty | |
zmodload -a zsh/zprof zprof | |
zmodload -ap zsh/mapfile mapfile | |
EDITOR='vim' | |
PAGER='less' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment