MAINT: opensuse pt2

This commit is contained in:
Matthew Ryan Dillon 2019-02-24 13:36:20 -07:00
parent c62a0eb97d
commit 8e336bc698
4 changed files with 22 additions and 1 deletions

View file

@ -76,8 +76,11 @@ cdpath=(
path=(
# miniconda
/opt/miniconda3/bin
# yarn
$HOME/.yarn/bin
$HOME/.config/yarn/global/node_modules/.bin
$path
)
export -U PATH
export PATH_SAVE=$PATH

View file

@ -20,6 +20,7 @@ alias i="ipython3"
BASE16_SHELL=$HOME/.config/base16-shell/
[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
[ -f $HOME/.fzf.zsh ] && source $HOME/.fzf.zsh
# Backup shortcuts (borrowed parts from https://github.com/laurent22/rsync-time-backup
function prune_backups() {
@ -65,3 +66,4 @@ function back_things_up() {
ln -s $dest_root/$date $dest_root/latest
# TODO: once confident pruning is working well, add that in here
}