1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2025-04-26 03:45:21 -04:00

randomness

This commit is contained in:
Jake Jarvis 2021-07-04 10:52:08 -04:00
parent 6a3de7b52c
commit 9b128e2fb7
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39
5 changed files with 21 additions and 10 deletions

View File

@ -3,12 +3,13 @@
###############################
tap "adoptopenjdk/openjdk"
tap "aws/tap"
tap "cloudflare/cloudflare"
tap "dart-lang/dart"
tap "dopplerhq/cli"
tap "facebook/fb"
tap "github/bootstrap"
tap "github/gh"
tap "hashicorp/tap"
tap "heroku/brew"
tap "homebrew/bundle"
tap "homebrew/cask"
@ -19,6 +20,7 @@ tap "homebrew/core"
tap "homebrew/services"
tap "homebrew/test-bot"
tap "sass/sass"
tap "superfly/tap"
tap "teamookla/speedtest"
tap "thoughtbot/formulae"
tap "twilio/brew"
@ -97,7 +99,6 @@ brew "nvm"
# Mostly ordinary binaries
brew "act"
brew "aws/tap/aws-sam-cli"
brew "aws-shell"
brew "awscli"
brew "angular-cli"
@ -118,12 +119,17 @@ brew "deno"
brew "dive"
brew "docker-credential-helper-ecr"
brew "doctl"
brew "dopplerhq/cli/doppler"
brew "elixir"
brew "erlang"
brew "fx"
brew "geoip"
brew "go"
brew "guetzli"
brew "hashicorp/tap/packer"
brew "hashicorp/tap/terraform"
brew "hashicorp/tap/vault"
brew "hashicorp/tap/waypoint"
brew "heroku/brew/heroku"
brew "heroku/brew/heroku-node"
brew "htop"
@ -173,8 +179,8 @@ brew "serverless"
brew "shellcheck"
brew "sqlite"
brew "sub2srt"
brew "superfly/tap/flyctl"
brew "teamookla/speedtest/speedtest"
brew "terraform"
brew "thoughtbot/formulae/parity"
brew "tor"
brew "torsocks"

View File

@ -15,15 +15,19 @@ packages=(
gatsby-cli
gitmoji-cli
gulp
is-up-cli
json-server
netlify-cli
newman
nodemon
npm-check
npm-check-updates
pm2
postcss-cli
postcss
prettier
release-it
serve
standard
stylelint
superstatic

View File

@ -86,12 +86,14 @@ make_hugo() {
# parentheses lets us cd to Hugo path without changing our current location
(
cd "$GOPATH/src/github.com/gohugoio/hugo" \
&& /bin/bash -c "$GOPATH/bin/hugo env" \
&& git checkout master \
&& mage uninstall \
&& git pull origin master \
&& git reset --hard HEAD \
&& mage -v hugo \
&& HUGO_BUILD_TAGS=extended mage -v install
&& HUGO_BUILD_TAGS=extended mage -v install \
&& /bin/bash -c "$GOPATH/bin/hugo env"
)
}
alias hugo_brew="brew upgrade hugo --fetch-HEAD --build-from-source"

View File

@ -45,8 +45,8 @@ update() {
brew cleanup
echo -e "${YELLOW}Updating NPM/Yarn packages...${NC}"
npm install npm@latest --global
npm update --global
npm install --global npm@latest npm-check-updates@latest
npm-check-updates --global --upgrade
yarn global upgrade
echo -e "${YELLOW}Updating Ruby gems...${NC}"

View File

@ -53,12 +53,11 @@ export PATH="$HOMEBREW_PREFIX/opt/jpeg-turbo/bin:$PATH"
#export LDFLAGS="-L$HOMEBREW_PREFIX/opt/jpeg-turbo/lib"
#export CPPFLAGS="-I$HOMEBREW_PREFIX/opt/jpeg-turbo/include"
# nvm
# export NVM_DIR="$HOME/.nvm"
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# pyenv
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
fi