-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.main
32 lines (23 loc) · 864 Bytes
/
env.main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export EDITOR=nvim
export CLICOLOR=1
# Volta
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
# SQLT I think
export SBT_OPTS="-DsocksProxyHost=127.0.0.1 -DsocksProxyPort=8080 -Duser.timezone=UTC"
#export HUSKY=0
# Calypso Required Settings
export NODE_OPTIONS=--max-old-space-size=24576
export CHROMEDRIVER_SKIP_DOWNLOAD=false
# Annoyingly required for Calypso:
export PUPPETEER_SKIP_DOWNLOAD=false
# Use GNU tools
export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"
export PATH="$(brew --prefix python)/libexec/bin:$PATH"
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH"
export JAVA_HOME="/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home"
# Rust
. "$HOME/.cargo/env"
# >>> coursier install directory >>>
export PATH="$PATH:$HOME/Library/Application Support/Coursier/bin"
# <<< coursier install directory <<<