Essentials

MacOS comes with python3, ruby, git preinstalled. We will install other missing essential tools used frequently by Developers.

Tools

Command-line tools

Install essential command-line tools

  • watchwatch will run a command repeatedly and then display the output in an ncurses friendly manner.

  • jqjq is like sed for JSON data

  • gitgit is a version control system CLI

Better CLI Alternative Tools

  • ghGitHub CLI brings GitHub to your terminal.

  • bat — A syntax highlighting clone of cat and can stand in for less

  • delta — A syntax highlighting pager for diff-ing

  • fd — A user-friendly version of find

  • htop — An interactive replacement for top

  • procs — A modern replacement for ps

  • eza — A modern replacement for ls

  • ripgrep — An improved grep

  • dust — A more intuitive version of du

  • duf — A better df alternative

  • prettyping —A pretty wrapper around ping

Fonts

We need developer friendly fonts for Terminals (ghostty, macOS Terminal app) and Editors (IntelliJ, VSCode, sublime-text) to enhance visual experience. You can explore various fonts for IDEs at Programming Fonts website.

We recommend:

  • Editor Font: Source Code Pro, Fira Code or Jetbrains Mono

  • Terminal Font: Meslo LG, FiraCode Nerd Font or Hack Nerd Font from nerd-fonts

After installing your choice of font, you have to configure each Editor and Terminal to use this font, which is covered in Apps section.

Apps

Install essential Apps via brew cask

Since many of us won't have admin rights on Company issued MacBooks, we will be installing software into User's Applications (i.e., ~/Applications) directory:

If you have admin privilege, you can skip --appdir=~/Applications flag

Development Tools

Apple’s container Docs

Other benefit of installing Apps via Brew is, it links binaries to /opt/homebrew/bin which is added to $PATH.

So, you can open projects/directors from command-line in VSCode or Sublime-text with:

Productivity

  • Alfred: Spotlight on steroids.

Other

  • Google Chrome

  • Microsoft Remote Desktop: rdp (optional)

  • OBS: Record your screen with audio, mouse highlight and other features. (optional)

  • logitech-options: logitech driver, install only if you have MX mouse (optional)

  • slack: app for communication (optional)

Customize above applications further from: Apps docs

Last updated

Was this helpful?