forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.exports
53 lines (40 loc) · 1.71 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Set to the name theme to load.
# Look in ~/.oh-my-zsh/themes/
export ZSH_THEME="plbabin"
# Editor
export EDITOR='code --wait'
export GIT_EDITOR='code --wait'
# Donít clear the screen after quitting a manual page
export MANPAGER="less -X"
# Larger bash history (allow 32 entries; default is 500)
export HISTSIZE=32768
export HISTFILESIZE=$HISTSIZE
export HISTFILE=~/.zsh_history
# SSL
#export SSL_CERT_FILE=/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt
# Set to this to use case-sensitive completion
# export CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
# export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
# java
#export JAVA_HOME="`/usr/libexec/java_home -v '1.8*'`"
export JAVA_HOME="$(/usr/libexec/java_home)"
# cairo
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/X11/lib/pkgconfig
########################################################################################
# php-version (activate default PHP version and autocompletion)
# PHP_HOME => should reflect location of compiled PHP versions
# PHPVERSION_DISABLE_COMPLETE=1 => to disable shell completion
########################################################################################
# export PHP_VERSIONS=$(dirname $(brew --prefix php56))
# [ -f $(brew --prefix php-version)/php-version.sh ] &&
# source $(brew --prefix php-version)/php-version.sh && php-version 5.6.3 >/dev/null
# export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH"
# brew cask
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# android
export ANDROID_HOME=/usr/local/opt/android-sdk
# default node version
export PATH="/usr/local/opt/node@8/bin:$PATH"