forked from marcelbeumer/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile-macbook
39 lines (32 loc) · 920 Bytes
/
profile-macbook
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
export PATH=/usr/local/sbin:$PATH
export PATH=/usr/local/bin:$PATH
export PATH=/usr/local/mysql/bin:$PATH
export PATH=/usr/local/share/npm/bin:$PATH
export PATH=/usr/local/php5/bin:$PATH
export PATH=~/bin:$PATH
export PATH=node_modules/.bin:$PATH
export CLICOLOR=true
export EDITOR="vim"
export GREP_OPTIONS='--color=auto'
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# Plugin config
export DOTFILES_ENV="mac"
export WORKON_HOME=~/Development/Envs # virtualenv
export HTTPDCONF="/etc/apache2/httpd.conf" #shortcuts
# My bash "plugins"
. ~/.bash/shortcuts
. ~/.bash/virtualenv
. ~/.bash/prompt
. ~/.bash/invm
. ~/.bash/git
. ~/.bash/hg
# Homebrew / Xcode clash
alias git=/usr/local/bin/git
alias python2=python
# Howbrew bash completion
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"