Created
December 10, 2014 23:13
-
-
Save buritica/03a96d4d448d4000807a to your computer and use it in GitHub Desktop.
my zshrc file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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