My personal instructions for configuring macOS the way I like it and installing the tools I use.
This a long list, but it's just one list, it's detailed, and I tread it often enough (every year or two) that it's accurate and useful. Not all items need to be expressed in an order, but many of them do and so the "it's just a list" top-down approach is a good thing. It's not perfect. Some of the order is wrong especially with regard to bootstrapping to a working Nushell environment, but it's great enough.
- Configure macOS system settings
System Settings > Keyboard > Keyboard Shortcuts... > Modifier Keys
and configure "Caps Lock key" to perform "Control"System Settings > Keyboard > Keyboard Shortcuts... > Function Keys
and toggle on "Use F1, F2, etc. keys as standard function keys"System Settings > Keyboard > Press (globe) key to...
change toDo nothing
so that it doesn't annoyingly bring up the character/emoji picker even when I'm using the function key to do something like change the volume.- Remove clutter macOS app icons from the Dock. Remove an icon with the context menu item "Remove from Dock".
System Settings > Desktop & Dock > Automatically hide and show the Dock
System Settings > Control Center > Clock Options > Display the time with seconds
System Settings > Control Center > Battery > Show percentage
System Settings > General > AirDrop & Handoff
and turnAirPlay Receiver
off because it uses port 500.
- Install Xcode from the app store
- Agree to the license (try to execute
git
in the terminal and it will prompt you to read the license and agree to it) - Run the Command Line Tools (CLT) because this is at least needed for Homebrew and imagine other stuff. Run the following command.
xcode-select --install
- Agree to the license (try to execute
- Install Raycast https://www.raycast.com and configure it.
- During the getting started flow, enable the window management extension.
- Enable Cmd + Space to launch Raycast instead of the Spotlight launcher by following the next steps.
System Settings > Keyboard > Keyboard Shortcuts... > Spotlight
and uncheckShow Spotlight search
andShow Finder search window
- Open Raycast settings, click
Raycast Hotkey
, and pressCmd + Space
- Configure window management keyboard shortcuts by following the next steps.
- Open Raycast settings, go to
Extensions
- Type "Window Management" and disable the extension. We only want to enable a select few commands.
- Type "Left Half", click "Record Hotkey", and press
Ctrl + [
- Type "Right Half", click "Record Hotkey", and press
Ctrl + ]
- Type "Maximize", click "Record Hotkey", and press
Ctrl + \
- Alternatively to Raycast's window management, install Rectangle https://github.com/rxhanson/Rectangle
- Uncheck all keyboard shortcuts. Configure the following:
- "Left Half":
Ctrl + [
- "Right Half":
Ctrl + ]
- "Maximize":
Ctrl + \
- "Left Half":
- Clone this repository
- First make the "repos" directory with
mkdir -p ~/repos/personal
cd ~/repos/personal && git clone https://github.com/dgroomes/my-software.git
- Finally, move to this directory because many of the later setup steps assume you are in this directory because they use relatives paths:
cd my-software
- First make the "repos" directory with
- Install iTerm2 https://iterm2.com/downloads.html. Configure it with my configuration:
- Create the iTerm config directory with
mkdir -p ~/.config/iterm2
- Copy the plist file with
cp iterm2/com.googlecode.iterm2.plist ~/.config/iterm2/com.googlecode.iterm2.plist
- Open iTerm and navigate to
Preferences > General > Settings
. CheckLoad preferences from a custom folder or URL
and set it to~/.config/iterm2
. - A prompt will come up to save the current settings. Do not save the current settings.
- In
General > Settings
, set theSave changes
dropdown toAutomatically
- Restart iTerm
- Create the iTerm config directory with
- Install Homebrew https://brew.sh/
- Download and install it using the
.pkg
installer. - Install the shell completion into the right place.
bash-completion
has so much auto-discovery, and Homebrew is so all-in on Bash that you think you wouldn't need to do this, but you do. Use the following command. -
mkdir -p ~/.local/share/bash-completion/completions && ln -s /opt/homebrew/completions/bash/brew ~/.local/share/bash-completion/completions/brew
- Download and install it using the
- Install my own formulas
- This is an experiment. I'm trying out maintaining my own Homebrew formulas.
-
brew tap dgroomes/my-software "$PWD" brew install dgroomes/my-software/my-open-jdk@11 brew install dgroomes/my-software/my-open-jdk@17 brew install dgroomes/my-software/my-open-jdk@21 brew install dgroomes/my-software/my-node@20 brew install dgroomes/my-software/my-node@23
- Install Bash
- macOS uses a years old version of Bash and will never update it because of licensing. We'll use Homebrew to install a modern version of Bash. First, initialize the Homebrew environment config with the following command (yes, this is awkward but the nature of bootstrapping systems is indeed awkward).
-
eval $(/opt/homebrew/bin/brew shellenv)
- Next, install Bash with the following command.
-
brew install bash
- After installing from Homebrew, you will need to change the default shell with the following:
-
sudo bash -c 'echo /opt/homebrew/bin/bash >> /etc/shells'
-
chsh -s /opt/homebrew/bin/bash
- Open a new session and verify the new version of Bash is being used with the following command.
-
echo $BASH_VERSION
- Configure my custom Bash setup
- Copy over the
.bash_profile
to the home directory with the following command. -
cp bash/.bash_profile ~
- Open a new Bash session and enjoy the custom environment variables, etc.
- Copy over the
- Install 'bash-completion'.
-
brew install bash-completion@2
- See additional information in
bash/BASH_COMPLETION.md
.
-
- Install Nushell, configure it and make it the default shell
- WARNING: There is a bootstrapping problem. You need to skip ahead and install Rust and Rust-based tools. I don't want to re-arrange that right now because the change is getting unwieldy due to other updates.
-
sudo cp nushell/shell-launcher.zsh /usr/local/bin
-
sudo chmod +x /usr/local/bin/shell-launcher.zsh
-
sudo bash -c 'echo /usr/local/bin/shell-launcher.zsh >> /etc/shells'
-
chsh -s /usr/local/bin/shell-launcher.zsh
- Start a new shell session: welcome to Nushell. Use the following commands to setup all the Nushell config.
-
cd nushell
-
$env.DO_DIR = (pwd)
-
overlay use --prefix do.nu
- Create an empty
misc.do
file in thesetup/
directory. -
touch (($nu.config-path | path dirname) | [($in) setup misc.nu] | path join)
- Clone the nu_scripts repository.
-
mkdir ~/repos/opensource git clone https://github.com/nushell/nu_scripts.git ~/repos/opensource/nu_scripts
- Go through and do all the
do install ...
commands. - Start a fresh Nushell session and enjoy the customized environment.
- Install Atuin
- Install Atuin and copy over my config with the following commands.
-
brew install atuin
-
cp atuin/config.toml ~/.config/atuin/config.toml
- Install JetBrains Toolbox https://www.jetbrains.com/toolbox-app/
- Open Toolbox
- Log in to your JetBrains account
- Install Intellij Ultimate
- In
my-software
, build my JetBrains preferences file (settings.zip
). See instructions injetbrains/README.md
- Open this project in Intellij from the command line with the following command.
-
idea .
- Import settings from the
settings.zip
created earlier - Disable unneeded plugins (there are a lot!)
- Install desired plugins (which ones do I like? JetBrains is pretty great about bundling and supporting tons already that I don't need many third-party ones).
- In macOS settings, disable the "Cmd + Shift + A" system keyboard shortcut so it does not conflict with the "Find Action" Intellij keyboard shortcut. See instructions at https://intellij-support.jetbrains.com/hc/en-us/articles/360005137400-Cmd-Shift-A-hotkey-opens-Terminal-with-apropos-search-instead-of-the-Find-Action-dialog
- Install
jq
-
brew install jq
-
- Install
kcat
-
brew install kcat
-
- Install Python core components
- There are multiple ways to install Python. Using the official installer is a perfectly valid approach. I'm already invested in Homebrew, and it's a good choice for me. Use the following command.
-
brew install python
- The Python installation managed by Homebrew is considered an "externally managed" installation, and the Python
docs describe what this
means in detail. Consider reading those docs carefully because it will help you navigate the many facets of
managing the Python ecosystem on your computer. An effect of all this is that we should also install
pipx
directly from Homebrew (and basically never use thepip3
binary that comes with the Python installation). We'll usepipx
to install Python packages globally for the user, likepoetry
, and others. Use the following command. -
brew install pipx
- Install
pipx
shell completion and argcomplete because it's a dependency. -
pipx install argcomplete
-
mkdir ~/.local/share/bash-completion/completions/ ; register-python-argcomplete pipx | save ~/.local/share/bash-completion/completions/pipx
- Install Poetry
-
pipx install poetry
- Install Starship https://github.com/starship/starship
-
The minimal, blazing-fast, and infinitely customizable prompt for any shell!
-
brew install starship
- For more information, read the official instructions in the Starship README.md.
- Do the fonts installation (Note that this uses a neat feature of git that
only downloads a specific directory of the repo). Choose "Keep Both" every time you are prompted.
git clone \ --depth 1 \ --filter=blob:none \ --sparse \ https://github.com/ryanoasis/nerd-fonts.git ~/repos/opensource/nerd-fonts pushd ~/repos/opensource/nerd-fonts git sparse-checkout set patched-fonts/FiraCode open patched-fonts/FiraCode/Bold/FiraCodeNerdFontMono-Bold.ttf open patched-fonts/FiraCode/Light/FiraCodeNerdFontMono-Light.ttf open patched-fonts/FiraCode/Medium/FiraCodeNerdFontMono-Medium.ttf open patched-fonts/FiraCode/Regular/FiraCodeNerdFontMono-Regular.ttf open patched-fonts/FiraCode/Retina/FiraCodeNerdFontMono-Retina.ttf open patched-fonts/FiraCode/SemiBold/FiraCodeNerdFontMono-SemiBold.ttf popd
- Restart iTerm2, configure "Use a different font for non-ASCII text" and choose the just installed "FiraCode Nerd Font Mono" font to get the special symbols
- Copy over the custom Starship config file with the following command.
-
mkdir -p ~/.config && cp starship/starship.toml ~/.config
-
- Add
~/.inputrc
cp .inputrc ~
- Install Bash completions for
pip
-
pip3 completion --bash > ~/.local/share/bash-completion/completions/pip3
- Note: I haven't vetted this in 2023.
-
- Install latest
git
and configure it-
brew install git
- Configure basic
git
config elements https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup-
git config --global user.name "John Doe"
- But change the name
-
git config --global user.email [email protected]
- But change the address
-
git config --global pull.ff only
- When I pull, I don't want it to create a merge if I am behind the remote.
-
git config --global init.defaultBranch main
-
git config --global alias.lg "log --all --graph --pretty=format:'%C(green)%ad%C(reset) %C(auto)%h%d %s %C(blue)<%aN>%C(reset)' --date=format-local:'%Y-%m-%d'"
- Create a cool alternative to
git log
namedgit lg
- Create a cool alternative to
-
git config --global alias.st "status --short --branch"
-
git config --global push.autoSetupRemote true
- This makes it so that your first
git push
will work, and you don't needgit push --set-upstream ...
.
- This makes it so that your first
-
- Configure
git
credentials- Note: when it comes to learning and configuring Git credentials, I recommend you bias towards official Git mechanisms and not to the GitHub-specific advice which touts the GitHub CLI and something called Git Credential Manager (GCM) which is not a Git official project. Know your options.
- Read the 7.14 Git Tools - Credential Storage section of the Git Book.
-
git config --global credential.helper osxkeychain
- The next time you
git push
you will get a popup. Enter a Personal Access Token (PAT) and choose "Always allow". When the PAT expires, I'm not 100% sure what the UX is. I think it just prompts for the username/password again and doesn't give an error message.
- Create and configure a global gitignore file
-
".DS_Store" | save ~/.gitignore_global git config --global core.excludesfile ~/.gitignore_global
- The exclusions described by a global gitignore file should be sparing for two reasons. 1) If a project is
shared, it's convenient for everyone else if the exclusions are version-controlled in the project-specific
gitignore file. 2) Projects are diverse and unpredictable. There might be a project that wants to version-control
the
build/
orout/
directories, and for good reason. For me, the.DS_Store
exclusion is a very safe bet.
-
-
- Install Docker Desktop https://docs.docker.com/desktop/install/mac-install/
- Disable phone-home telemetry
- Configure Docker to use fewer resources. Consider only 2-3 cores and 6GB (but it depends on the need and constraints).
- Install Karabiner-Elements https://github.com/pqrs-org/Karabiner-Elements from source (or Homebrew) and configure it with.
- First, we must configure Xcode command line tools correctly. Follow these instructions https://stackoverflow.com/a/61725799
- Then, install
xcodegen
from source https://github.com/yonaskolb/XcodeGen:git clone --depth 1 https://github.com/yonaskolb/XcodeGen.git ~/repos/opensource/XcodeGen cd ~/repos/opensource/XcodeGen/ mkdir -p "$HOME/.local/share" "$HOME/.local/bin" make PREFIX="$HOME/.local" install
-
brew install xz brew install cmake
- Then, install Karabiner Elements
git clone --depth 1 https://github.com/pqrs-org/Karabiner-Elements.git ~/repos/opensource/Karabiner-Elements cd ~/repos/opensource/Karabiner-Elements git submodule update --init --recursive --depth 1 make package
- Install from the
.dmg
file that was just created in the root of the project. E.g.Karabiner-Elements-14.12.1.dmg
. - Then, configure it with my custom settings
mkdir ~/.config/karabiner/assets/complex_modifications cp karabiner/karabiner.json ~/.config/karabiner cp karabiner/assets/complex_modifications/* ~/.config/karabiner/assets/complex_modifications
- Install Go https://golang.org/dl/
- Note: Consider installing manually or using something like Homebrew. There are pros and cons to each approach. To install using Homebrew, use the following command.
-
brew install go
- Install Postgres
-
brew install postgresql@17
-
- Install
gh
https://github.com/cli/cli-
brew install gh
- Use it for the first time and log in.
-
- Install Rust
- Install
rustup
using the instructions in the official rust-lang site and do not allow it to modify thePATH
.
- Install
- Rust-based tools
- There is a nascent but rich ecosystem of Rust-based command-line tools. Many of them are substitutes for traditional
commands like
ls
,du
, andcat
but they bring a bevy of extra features. Best of all, they are fast. Keep track of this "re-implemented in Rust" trend and follow this great article Rewritten in Rust: Modern Alternatives of Command-Line Tools on https://zaiste.net/. zoxide
is "a smartercd
command". Install it with the following command.-
cargo install zoxide --locked
- There is a nascent but rich ecosystem of Rust-based command-line tools. Many of them are substitutes for traditional
commands like
- Install CleanShot
- Enter the license key
- Go through the configuration steps in the prompt.
- Install Sublime text
- Set
"color_scheme": "auto"
in the settings JSON file.
- Set
- Configure Safari settings
- Follow this StackExchange answer to change the behavior of
Cmd + W
so that it doesn't close the whole window when only pinned tabs are left. System Settings > Keyboard > Keyboard Shortcuts... > App Shortcuts
- Add a shortcut for "Safari", for menu item "Close Tab", shortcut
Cmd + W
.
- Follow this StackExchange answer to change the behavior of
- Install Go-based tools in
go/
- Install Java-based tools in
java/
- Install Python-based tools in
python/
- Clone all my repos
- Clone my
dgroomes/dgroomes
repository and use the Python script to get a JSON representation of all my repos. Then, use a command like the following to clone all of them. -
do { cd ~/repos/personal open ~/repos/personal/dgroomes/repos.json | where ($it.archived == false and not ($it.name | path exists)) | each { |repo| git clone $repo.clone_url } }
- Clone my
- Install dust
-
brew install dust
-
- Configure Gradle's "custom toolchain locations"
- Create the
~/.gradle/gradle.properties
file and add the following line -
org.gradle.java.installations.fromEnv=JAVA_11_HOME,JAVA_17_HOME,JAVA_21_HOME
- Create the
- Setup Bash completion for Git
- There is a special case for supporting Bash completion of the
git
command. Annoyingly, git is the only Homebrew-installed package that I use which distributes its Bash completion script in an incompatible naming scheme. It uses the namegit-completion.bash
. It needs to be eithergit
(my preference and the norm) orgit.bash
(perfectly fine too). An inexpensive fix for this is to symlink thegit-completion.bash
file togit
in the conventional "local" Bash completions directory. The 'bash-completion' library will find it there. -
mkdir ~/.local/share/bash-completion/completions ln -sf /opt/homebrew/etc/bash_completion.d/git-completion.bash ~/.local/share/bash-completion/completions/git
- There is a special case for supporting Bash completion of the
- Install uv
- TODO
- Ghostty
- TODO