Last active
November 27, 2017 10:29
-
-
Save khamiltonuk/a21655ec876e36b626db3145455a5e35 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
| .bashrc | |
| source ~/.profile | |
| .profile | |
| #!/bin/bash | |
| #Changing directory with alias | |
| alias front='cd ~/Development/OLX/plutus-frontend/' | |
| alias back='cd ~/Development/OLX/plutus-orchestration/' | |
| alias tests='cd ~/Development/OLX/plutus-frontend/' | |
| alias mock='cd ~/Development/OLX/plutus-mock-integrator/' | |
| alias olx='cd ~/Development/OLX/' | |
| #Autocomplete in bash | |
| if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
| . $(brew --prefix)/etc/bash_completion | |
| fi | |
| export JAVA_HOME="$HOME/.sdkman/candidates/java/current" | |
| #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! | |
| export SDKMAN_DIR="/Users/kristian.hamilton/.sdkman" | |
| [[ -s "/Users/kristian.hamilton/.sdkman/bin/sdkman-init.sh" ]] && source "/Users/kristian.hamilton/.sdkman/bin/sdkman-init.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment