Update various shell configs

This commit is contained in:
2017-02-11 00:17:43 +00:00
parent 9c675e9c62
commit b30b6b4c50
4 changed files with 29 additions and 29 deletions

View File

@@ -52,6 +52,7 @@ install_cask_global_packages () {
messenger \ messenger \
micro-snitch \ micro-snitch \
mist \ mist \
moom \
mplayerx \ mplayerx \
omnigraffle \ omnigraffle \
openemu \ openemu \
@@ -59,6 +60,7 @@ install_cask_global_packages () {
paw \ paw \
plex-media-player \ plex-media-player \
postman \ postman \
resolutionator \
ring \ ring \
screenhero \ screenhero \
sequel-pro \ sequel-pro \

View File

@@ -19,29 +19,30 @@ gvm-use() {
} }
install_go_global_packages () { install_go_global_packages () {
local packages=( \ local packages=(
github.com/FiloSottile/gvt \ github.com/FiloSottile/gvt
github.com/Masterminds/glide \ github.com/Masterminds/glide
github.com/alecthomas/gometalinter \ github.com/alecthomas/gometalinter
github.com/golang/lint/golint \ github.com/asciimoo/wuzz
github.com/kardianos/govendor \ github.com/golang/lint/golint
github.com/kisielk/errcheck \ github.com/kardianos/govendor
github.com/kovetskiy/manul \ github.com/kisielk/errcheck
github.com/kr/pretty \ github.com/kovetskiy/manul
github.com/laher/goxc \ github.com/kr/pretty
github.com/mailgun/godebug \ github.com/laher/goxc
github.com/mdempsky/unconvert \ github.com/mailgun/godebug
github.com/mitchellh/gox \ github.com/mdempsky/unconvert
github.com/motemen/gore \ github.com/mitchellh/gox
github.com/nsf/gocode \ github.com/motemen/gore
github.com/pmezard/go-difflib/difflib \ github.com/nsf/gocode
github.com/rakyll/boom \ github.com/pmezard/go-difflib/difflib
github.com/rogpeppe/godef \ github.com/rakyll/boom
github.com/tools/godep \ github.com/rogpeppe/godef
github.com/vektra/mockery/.../ \ github.com/tools/godep
golang.org/x/tools/cmd/goimports \ github.com/vektra/mockery/.../
golang.org/x/tools/cmd/gorename \ golang.org/x/tools/cmd/goimports
golang.org/x/tools/cmd/guru \ golang.org/x/tools/cmd/gorename
golang.org/x/tools/cmd/guru
) )
for package in "${packages[@]}"; do for package in "${packages[@]}"; do

View File

@@ -14,12 +14,9 @@ install_node_global_packages () {
eslint \ eslint \
eslint-config-semistandard \ eslint-config-semistandard \
eslint-config-standard \ eslint-config-standard \
eslint-config-standard \
eslint-plugin-promise \
eslint-plugin-promise \ eslint-plugin-promise \
eslint-plugin-react \ eslint-plugin-react \
eslint-plugin-standard \ eslint-plugin-standard \
eslint-plugin-standard \
htmllint-cli \ htmllint-cli \
jsfmt \ jsfmt \
jslinter \ jslinter \

View File

@@ -2,7 +2,7 @@
# Python # Python
# #
# Load virtualenv-burrito if it's available # Init pyenv
if [ -f "$HOME/.venvburrito/startup.sh" ]; then if [ -n "$(command -v pyenv)" ]; then
source "$HOME/.venvburrito/startup.sh" eval "$(pyenv init -)"
fi fi