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
watch —
watch
will run a command repeatedly and then display the output in anncurses
friendly manner.jq —
jq
is likesed
for JSON datagit —
git
is a version control system CLI
Better CLI Alternative Tools
gh —
GitHub CLI
brings GitHub to your terminal.bat — A syntax highlighting clone of
cat
and can stand in forless
delta — A syntax highlighting pager for
diff
-ingfd — 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
alternativeprettyping —A pretty wrapper around
ping
Fonts
We need developer friendly fonts for Terminals (iterm2, 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
iterm2: macOS Terminal Replacement
Sublimetext: lightweight text/markdown editor
VSCode: lightweight code editor
Jetbrains: toolbox to install jetbrains IDEs
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)
zoom: app for meetings (optional)
slack: app for communication (optional)
Mac App Store apps
Install apps from Mac App Store
with mas
Usage
Customize above applications further from: Apps docs
Last updated