Skip to content

Instantly share code, notes, and snippets.

@buritica
Created December 10, 2014 23:13
Show Gist options
  • Select an option

  • Save buritica/03a96d4d448d4000807a to your computer and use it in GitHub Desktop.

Select an option

Save buritica/03a96d4d448d4000807a to your computer and use it in GitHub Desktop.
my zshrc file
# Path to your oh-my-zsh configuration.
ZSH=$HOME/my/oh-my-zsh
# Set name of the theme to load.
ZSH_THEME="geoffgarside"
# oh-my-zsh plugins
plugins=(
git git-extras github \
heroku \
osx \
cp copydir copyfile \
npm \
)
# source other profile files
source $ZSH/oh-my-zsh.sh
source /opt/boxen/env.sh
# source private synced .env vars
source ~/Dropbox/Sync/.env
# Load the shell dotfiles, and then some:
for file in ~/my/dotfiles/.{exports,aliases,functions}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
# i like burgers
export PS1="🍔 $PS1"
# file size limit
ulimit -n 10000
eval "$(direnv hook zsh)"
echo "dotfiles sourced"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment