Skip to content

Instantly share code, notes, and snippets.

View lucasvst's full-sized avatar
🏠
Working from home

Lucas Teles lucasvst

🏠
Working from home
View GitHub Profile
@lucasvst
lucasvst / install-git-completion.sh
Last active May 13, 2019 13:44 — forked from johngibb/install-git-completion.sh
Mac OS X - Install Git Completion
URL="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash"
PROFILE="$HOME/.bash_profile"
echo "Downloading git-completion..."
if ! curl "$URL" --silent --output "$HOME/.git-completion.bash"; then
echo "ERROR: Couldn't download completion script. Make sure you have a working internet connection." && exit 1
fi
@lucasvst
lucasvst / .jshintrc
Created November 13, 2013 21:21 — forked from fdaciuk/.jshintrc
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,