MAINT: path cleanup and beets

This commit is contained in:
Matthew Ryan Dillon 2019-02-19 14:02:45 -07:00
parent 8d16ed159b
commit 2332284d8e
5 changed files with 65 additions and 35 deletions

21
beets.yaml Normal file
View file

@ -0,0 +1,21 @@
directory: ~/Music/beets/
library: ~/Music/beets/mrdlib.blb
import:
copy: true
write: true
resume: ask
art: true
quiet_fallback: skip
timid: true
log: beetslog.txt
art_filename: albumart
pluginpath:
- ~/Music/beets/myplugins
threaded: false
color: true

View file

@ -1,17 +1,20 @@
- clean: ['~']
- link:
~/.tmux.conf: tmux.conf
~/.gitconfig: git/gitconfig
~/.gitignore_global: git/gitignore_global
~/.psqlrc: psqlrc
~/.zpreztorc: zsh/zpreztorc
~/.zlogin: zsh/zlogin
~/.zlogout: zsh/zlogout
~/.zprofile: zsh/zprofile
~/.zshenv: zsh/zshenv
~/.zshrc: zsh/zshrc
~/.aspell.en.pws: aspell.en.pws
~/.vimrc: vimrc
~/.mrconfig: mrconfig
~/.taskrc: taskrc
~/.tmux.conf: tmux.conf
~/.gitconfig: git/gitconfig
~/.gitignore_global: git/gitignore_global
~/.psqlrc: psqlrc
~/.zpreztorc: zsh/zpreztorc
~/.zlogin: zsh/zlogin
~/.zlogout: zsh/zlogout
~/.zprofile: zsh/zprofile
~/.zshenv: zsh/zshenv
~/.zshrc: zsh/zshrc
~/.aspell.en.pws: aspell.en.pws
~/.vimrc: vimrc
~/.mrconfig: mrconfig
~/.taskrc: taskrc
~/.config/beets/config.yaml:
create: true
path: beets.yaml

View file

@ -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

View file

@ -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

View file

@ -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"