-
-
Save Pinjasaur/d058460e2c474054e655f86ad511c6a1 to your computer and use it in GitHub Desktop.
Dotfiles bootstrap
This file contains 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
# Get a short URL | |
shurl() { | |
if [ -z "$1" ]; then | |
echo "Usage: \`shurl <url>\`" | |
return 1 | |
fi | |
curl -G --data-urlencode "url=$1" https://uly.io/gimme-a-shurl | |
} | |
export JOT_DIR="$HOME/Dropbox/Notes" | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion |
This file contains 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
[user] | |
name = Paul Esch-Laurent | |
email = p@uly.io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment