Skip to content

rbroek/setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

macOS setup

Prerequisites

  • Profiles -> Advanced -> Semantic History -> Open with editor... -> TextMate

Install command line tools:

xcode-select --install

ZSH

brew install zsh zsh-completions
chsh -s /bin/zsh

Install oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enable plugins in ~/.zshrc:

plugins=(
  git
  bundler
  dotenv
  osx
  xcode
  php
  symfony
  symfony2
  brew
)

dotfiles

.gitconfig

[alias]
	lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
	ba = branch -a
	baf = branch -a --list "feature/*"
	rh = reset --hard HEAD
	cam = commit -am
	pr = pull --rebase
	fp = fetch --prune
	ftp = fetch --tags --prune
[user]
	name = <me>
	email = <email>

Or execute lines below to add [user] part:

git config --global user.name <me>
git config --global user.email <email>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published