-
Notifications
You must be signed in to change notification settings - Fork 3
/
.exports
executable file
·38 lines (26 loc) · 989 Bytes
/
.exports
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
33
34
35
36
37
38
#!/bin/bash
# Prevent oh-my-zsh from overriding the ~/.zshrc file.
export KEEP_ZSHRC='yes'
# Preferred editor for local and remote sessions
export EDITOR='nano'
# Prefer US English and use UTF-8.
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
# Avoid issues with `gpg` as installed via Homebrew.
# https://stackoverflow.com/a/42265848/96656
export GPG_TTY=$(tty);
export DOTFILES_DIR="$HOME/.dotfiles"
export MAGICK_HOME=/usr/local/Cellar/imagemagick@6/6.9.11-28/
export THEOS=~/theos
if [[ $(arch) == 'arm64' ]]; then
export APPLE_SILICON=true
fi
export NVM_DIR="$HOME/.nvm"
# export JAVA_HOME=/Applications/Android\ Studio.app/Contents/jre/Contents/Home
# export JAVA_HOME=/usr/libexec/java_home
export JAVA_HOME=$(/usr/libexec/java_home)
# pyenv root directory. Consumed by pyenv only.
export PYENV_ROOT="$HOME/.pyenv"
# Consumed by fastlane, which avoids printing the plugins table on every lane run
export FASTLANE_HIDE_PLUGINS_TABLE=true