From b30b6b4c50b1f7d7835aa3f4441be1be3c8ac415 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 11 Feb 2017 00:17:43 +0000 Subject: [PATCH] Update various shell configs --- shell/caskroom.sh | 2 ++ shell/golang.sh | 47 ++++++++++++++++++++++++----------------------- shell/nodejs.sh | 3 --- shell/python.sh | 6 +++--- 4 files changed, 29 insertions(+), 29 deletions(-) diff --git a/shell/caskroom.sh b/shell/caskroom.sh index cbec3bd..84201a5 100644 --- a/shell/caskroom.sh +++ b/shell/caskroom.sh @@ -52,6 +52,7 @@ install_cask_global_packages () { messenger \ micro-snitch \ mist \ + moom \ mplayerx \ omnigraffle \ openemu \ @@ -59,6 +60,7 @@ install_cask_global_packages () { paw \ plex-media-player \ postman \ + resolutionator \ ring \ screenhero \ sequel-pro \ diff --git a/shell/golang.sh b/shell/golang.sh index f557e7c..4d1efe3 100755 --- a/shell/golang.sh +++ b/shell/golang.sh @@ -19,29 +19,30 @@ gvm-use() { } install_go_global_packages () { - local packages=( \ - github.com/FiloSottile/gvt \ - github.com/Masterminds/glide \ - github.com/alecthomas/gometalinter \ - github.com/golang/lint/golint \ - github.com/kardianos/govendor \ - github.com/kisielk/errcheck \ - github.com/kovetskiy/manul \ - github.com/kr/pretty \ - github.com/laher/goxc \ - github.com/mailgun/godebug \ - github.com/mdempsky/unconvert \ - github.com/mitchellh/gox \ - github.com/motemen/gore \ - github.com/nsf/gocode \ - github.com/pmezard/go-difflib/difflib \ - github.com/rakyll/boom \ - github.com/rogpeppe/godef \ - github.com/tools/godep \ - github.com/vektra/mockery/.../ \ - golang.org/x/tools/cmd/goimports \ - golang.org/x/tools/cmd/gorename \ - golang.org/x/tools/cmd/guru \ + local packages=( + github.com/FiloSottile/gvt + github.com/Masterminds/glide + github.com/alecthomas/gometalinter + github.com/asciimoo/wuzz + github.com/golang/lint/golint + github.com/kardianos/govendor + github.com/kisielk/errcheck + github.com/kovetskiy/manul + github.com/kr/pretty + github.com/laher/goxc + github.com/mailgun/godebug + github.com/mdempsky/unconvert + github.com/mitchellh/gox + github.com/motemen/gore + github.com/nsf/gocode + github.com/pmezard/go-difflib/difflib + github.com/rakyll/boom + github.com/rogpeppe/godef + github.com/tools/godep + github.com/vektra/mockery/.../ + golang.org/x/tools/cmd/goimports + golang.org/x/tools/cmd/gorename + golang.org/x/tools/cmd/guru ) for package in "${packages[@]}"; do diff --git a/shell/nodejs.sh b/shell/nodejs.sh index e451c9b..362e130 100755 --- a/shell/nodejs.sh +++ b/shell/nodejs.sh @@ -14,12 +14,9 @@ install_node_global_packages () { eslint \ eslint-config-semistandard \ eslint-config-standard \ - eslint-config-standard \ - eslint-plugin-promise \ eslint-plugin-promise \ eslint-plugin-react \ eslint-plugin-standard \ - eslint-plugin-standard \ htmllint-cli \ jsfmt \ jslinter \ diff --git a/shell/python.sh b/shell/python.sh index e8d2ff1..6d53cd8 100644 --- a/shell/python.sh +++ b/shell/python.sh @@ -2,7 +2,7 @@ # Python # -# Load virtualenv-burrito if it's available -if [ -f "$HOME/.venvburrito/startup.sh" ]; then - source "$HOME/.venvburrito/startup.sh" +# Init pyenv +if [ -n "$(command -v pyenv)" ]; then + eval "$(pyenv init -)" fi