MAINT: path cleanup and beets
This commit is contained in:
parent
8d16ed159b
commit
2332284d8e
5 changed files with 65 additions and 35 deletions
|
@ -1,2 +1,7 @@
|
|||
# Matthew Dillon
|
||||
# matthewrdillon@gmail.com
|
||||
|
||||
# Doing this to get around `path_helper`, which reorders my path when I
|
||||
# least expect it!
|
||||
# https://github.com/sorin-ionescu/prezto/issues/381
|
||||
export PATH=$PATH_SAVE:$PATH
|
||||
|
|
41
zsh/zshenv
41
zsh/zshenv
|
@ -58,36 +58,35 @@ fi
|
|||
# Paths
|
||||
#
|
||||
|
||||
# shortcuts to projects
|
||||
export CDPATH="$CDPATH:$HOME/src/biocore"
|
||||
export CDPATH="$CDPATH:$HOME/src/caporaso-lab"
|
||||
export CDPATH="$CDPATH:$HOME/src/gregcaporaso"
|
||||
export CDPATH="$CDPATH:$HOME/src/qiime2"
|
||||
export CDPATH="$CDPATH:$HOME/src/thermokarst"
|
||||
export CDPATH="$CDPATH:."
|
||||
|
||||
# miniconda
|
||||
export PATH="/opt/miniconda3/bin:$PATH"
|
||||
|
||||
# macports
|
||||
export PATH="/opt/local/bin:$PATH"
|
||||
export PATH="/opt/local/sbin:$PATH"
|
||||
|
||||
# golang
|
||||
export GOROOT=/opt/go
|
||||
export PATH="$GOROOT/bin:$PATH"
|
||||
|
||||
typeset -gU cdpath fpath mailpath path
|
||||
|
||||
# Set the the list of directories that cd searches.
|
||||
cdpath=(
|
||||
# shortcuts to projects
|
||||
$HOME/src/biocore
|
||||
$HOME/src/caporaso-lab
|
||||
$HOME/src/gregcaporaso
|
||||
$HOME/src/qiime2
|
||||
$HOME/src/thermokarst
|
||||
.
|
||||
$cdpath
|
||||
)
|
||||
|
||||
# Set the list of directories that Zsh searches for programs.
|
||||
path=(
|
||||
$path
|
||||
/usr/local/{bin,sbin}
|
||||
# miniconda
|
||||
/opt/miniconda3/bin
|
||||
|
||||
# macports
|
||||
/opt/local/bin
|
||||
/opt/local/sbin
|
||||
|
||||
# xquartz
|
||||
/opt/X11/bin
|
||||
|
||||
# latex
|
||||
/Library/Tex/texbin
|
||||
)
|
||||
|
||||
export -U PATH
|
||||
export PATH_SAVE=$PATH
|
||||
|
|
|
@ -6,6 +6,8 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
|||
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
||||
fi
|
||||
|
||||
source /opt/miniconda3/etc/profile.d/conda.sh
|
||||
|
||||
# shortcuts
|
||||
alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25"
|
||||
alias mongod="mongod --config /usr/local/etc/mongod.conf"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue