From 3a3d94240df0198cbd5acfc5c9db2fd08c0c69cc Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Wed, 19 Aug 2020 14:09:43 -0400 Subject: [PATCH] use curl-openssl via homebrew, switch default browser --- zsh/.zshrc | 2 +- zsh/path.zsh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 16992ef..6ea81f9 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -10,7 +10,7 @@ export ZSH=$HOME/.oh-my-zsh # Default to nano 'cause I'm a wimp export EDITOR="nano" export VISUAL="code" -export BROWSER="/Applications/Firefox.app/Contents/MacOS/firefox-bin" +export BROWSER="/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome" # Adjust history for speed HISTFILE=~/.zsh_history diff --git a/zsh/path.zsh b/zsh/path.zsh index 2d24922..2362176 100644 --- a/zsh/path.zsh +++ b/zsh/path.zsh @@ -17,7 +17,9 @@ export PATH="$GEM_PATH/bin:$PATH" export PATH="/opt/metasploit-framework/bin:$PATH" # curl -export PATH="/usr/local/opt/curl/bin:$PATH" +# export PATH="/usr/local/opt/curl/bin:$PATH" +export PATH="/usr/local/opt/curl-openssl/bin:$PATH" + # Rust/Cargo export PATH="$HOME/.cargo/bin:$PATH"