MAINT: path cleanup and beets
This commit is contained in:
parent
8d16ed159b
commit
2332284d8e
5 changed files with 65 additions and 35 deletions
21
beets.yaml
Normal file
21
beets.yaml
Normal 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
|
|
@ -1,17 +1,20 @@
|
||||||
- clean: ['~']
|
- clean: ['~']
|
||||||
|
|
||||||
- link:
|
- link:
|
||||||
~/.tmux.conf: tmux.conf
|
~/.tmux.conf: tmux.conf
|
||||||
~/.gitconfig: git/gitconfig
|
~/.gitconfig: git/gitconfig
|
||||||
~/.gitignore_global: git/gitignore_global
|
~/.gitignore_global: git/gitignore_global
|
||||||
~/.psqlrc: psqlrc
|
~/.psqlrc: psqlrc
|
||||||
~/.zpreztorc: zsh/zpreztorc
|
~/.zpreztorc: zsh/zpreztorc
|
||||||
~/.zlogin: zsh/zlogin
|
~/.zlogin: zsh/zlogin
|
||||||
~/.zlogout: zsh/zlogout
|
~/.zlogout: zsh/zlogout
|
||||||
~/.zprofile: zsh/zprofile
|
~/.zprofile: zsh/zprofile
|
||||||
~/.zshenv: zsh/zshenv
|
~/.zshenv: zsh/zshenv
|
||||||
~/.zshrc: zsh/zshrc
|
~/.zshrc: zsh/zshrc
|
||||||
~/.aspell.en.pws: aspell.en.pws
|
~/.aspell.en.pws: aspell.en.pws
|
||||||
~/.vimrc: vimrc
|
~/.vimrc: vimrc
|
||||||
~/.mrconfig: mrconfig
|
~/.mrconfig: mrconfig
|
||||||
~/.taskrc: taskrc
|
~/.taskrc: taskrc
|
||||||
|
~/.config/beets/config.yaml:
|
||||||
|
create: true
|
||||||
|
path: beets.yaml
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
# Matthew Dillon
|
# Matthew Dillon
|
||||||
# matthewrdillon@gmail.com
|
# 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
|
# 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
|
typeset -gU cdpath fpath mailpath path
|
||||||
|
|
||||||
# Set the the list of directories that cd searches.
|
# Set the the list of directories that cd searches.
|
||||||
cdpath=(
|
cdpath=(
|
||||||
|
# shortcuts to projects
|
||||||
|
$HOME/src/biocore
|
||||||
|
$HOME/src/caporaso-lab
|
||||||
|
$HOME/src/gregcaporaso
|
||||||
|
$HOME/src/qiime2
|
||||||
|
$HOME/src/thermokarst
|
||||||
|
.
|
||||||
$cdpath
|
$cdpath
|
||||||
)
|
)
|
||||||
|
|
||||||
# Set the list of directories that Zsh searches for programs.
|
# Set the list of directories that Zsh searches for programs.
|
||||||
path=(
|
path=(
|
||||||
$path
|
# miniconda
|
||||||
/usr/local/{bin,sbin}
|
/opt/miniconda3/bin
|
||||||
|
|
||||||
|
# macports
|
||||||
|
/opt/local/bin
|
||||||
|
/opt/local/sbin
|
||||||
|
|
||||||
|
# xquartz
|
||||||
|
/opt/X11/bin
|
||||||
|
|
||||||
|
# latex
|
||||||
|
/Library/Tex/texbin
|
||||||
)
|
)
|
||||||
|
|
||||||
export -U PATH
|
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"
|
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
source /opt/miniconda3/etc/profile.d/conda.sh
|
||||||
|
|
||||||
# shortcuts
|
# shortcuts
|
||||||
alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25"
|
alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25"
|
||||||
alias mongod="mongod --config /usr/local/etc/mongod.conf"
|
alias mongod="mongod --config /usr/local/etc/mongod.conf"
|
||||||
|
|
Loading…
Add table
Reference in a new issue