mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
19 lines
259 B
Bash
19 lines
259 B
Bash
#!/bin/bash
|
|
set +e
|
|
|
|
_recipe brew
|
|
_brew isync
|
|
|
|
_recipe emacs
|
|
case $_PLATFORM in
|
|
darwin)
|
|
EMACS=$(which emacs) _brew mu --with-emacs --HEAD
|
|
;;
|
|
*)
|
|
_recipe apt
|
|
_apt maildir-utils
|
|
;;
|
|
esac
|
|
|
|
_recipe nvm
|
|
_npm imapnotify
|