Going Mac – Part 3

So it seems I’m not going back. I still use a Windows machine for the family PC, but here I am on another MacBook Pro for work.

Install Brew with this

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then save the following as a Brew bundle file, `Brewfile`

tap "homebrew/bundle"
tap "homebrew/cask-fonts"
brew "n"
brew "powerlevel10k"
brew "zsh-autosuggestions"
brew "zsh-syntax-highlighting"
cask "alfred"
cask "font-fira-code"
cask "gitkraken"
cask "hyper"
cask "jetbrains-toolbox"
cask "notunes"
cask "rectangle"
cask "whatsapp"

and run brew bundle.

Install Oh My Zsh with

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Aliases to add to the end of ~/.zshrc:

alias ls="eza"
alias l="eza -la"
alias c="clear"
alias cat="bat"


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.