Skip to content

Commit

Permalink
Fix Emacs .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
aguynamedben committed May 26, 2014
1 parent 58b561a commit fa361f0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ backups
.vim/bundle

# Emacs
*~
# https://github.com/github/gitignore/blob/master/Global/Emacs.gitignore
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*


# Java
.idea
Expand All @@ -23,4 +28,9 @@ target

# Python
.Python
.ropeproject
.ropeproject

# Ruby
.ruby-version
.env
.powenv
12 changes: 11 additions & 1 deletion .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ unsetopt correct_all

if [ $(uname) = 'Darwin' ]; then
# OS X helper binary
export JAVA_HOME=`/usr/libexec/java_home`
#export JAVA_HOME=`/usr/libexec/java_home`

# Brew executables path
export PATH=/usr/local/bin:$PATH
Expand All @@ -51,6 +51,13 @@ if [ $(uname) = 'Darwin' ]; then
export PATH=~/bin:$PATH

export ARCHFLAGS="-arch x86_64"

# rbenv
if which rbenv > /dev/null; then
export PATH=$HOME/.rbenv/bin:$PATH
eval "$(rbenv init -)"
fi

fi

# My Emacs config expects the prompt to be like this
Expand All @@ -69,3 +76,6 @@ syspip(){
}
# cache pip-installed packages to avoid re-downloading
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache

### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"

0 comments on commit fa361f0

Please sign in to comment.