Skip to content

Instantly share code, notes, and snippets.

@saemu
saemu / README.md
Last active January 25, 2023 20:14
MacOS Development Setup

Hints to setup MacOS for Development

Basic Setup

TL;DR

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update
brew install iterm2
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@saemu
saemu / git-bash-prompt.sh
Last active February 18, 2022 06:55
Git Settings
#!/bin/bash
curl -q https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh -o ~/.git-prompt.sh
curl -q https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
cat << EOF >> ~/.bashrc
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
if [ -f ~/.git-prompt.sh ]; then
. ~/.git-prompt.sh
fi