-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexports
More file actions
41 lines (29 loc) · 950 Bytes
/
exports
File metadata and controls
41 lines (29 loc) · 950 Bytes
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
#!/bin/bash
#Set number of possible open files in paralel
ulimit -n 10000
#Set default editor
export EDITOR='vi'
#Set language environment
export LANG=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/dsa_id"
#Ser app directory for homebrew cask (no need for symlinks)
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# Add coreutils from brew
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
#Set default GO environmet
export GOPATH=$HOME/Documents/dev/goprojects
export PATH=$GOPATH:$PATH
export PATH=$GOPATH/bin:$PATH
#Add composer bin globaly (PHP)
#export PATH=$PATH:$HOME/.composer/vendor/bin
#load php7 from homebrew
export PATH="$(brew --prefix homebrew/php/php70)/bin:$PATH"
#load nvm
export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"