Created
July 18, 2016 10:06
-
-
Save venil7/4332d5c0875d02402234e006a75ce296 to your computer and use it in GitHub Desktop.
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
| export NVM_DIR="/Users/darkruby/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
| if [ -f "$(brew --prefix bash-git-prompt)/share/gitprompt.sh" ]; then | |
| GIT_PROMPT_THEME=Default | |
| source "$(brew --prefix bash-git-prompt)/share/gitprompt.sh" | |
| fi | |
| if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
| . $(brew --prefix)/etc/bash_completion | |
| fi | |
| source "/Users/darkruby/.frecent/z.sh" | |
| ENABLE_ALIAS=true | |
| # Enables the git tools | |
| ENABLE_GIT=true | |
| # Enables the symfony tools | |
| ENABLE_SYMFONY=false | |
| # Enables the symfony tools | |
| ENABLE_BEHAT=false | |
| # Enables the symfony tools | |
| ENABLE_PHPSPEC=false | |
| # Enables the vagrant tools | |
| ENABLE_VAGRANT=false | |
| # Specify the base path | |
| # For example: /home/<user>/.bash-dev-tools/ | |
| BASE_PATH="/Users/darkruby/.bash-dev-tools/" | |
| # Source the bash dev tools script | |
| source "${BASE_PATH}devtools.sh" | |
| alias cryptfs="encfs ~/Dropbox/.encfs/ ~/Desktop/encfs/" | |
| alias ramdrive="diskutil erasevolume HFS+ 'ramdrive' `hdiutil attach -nomount ram://8388608`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment