Personal macOS laptop baseline, managed with Homebrew Bundle, GNU Stow, and Just.
This repo installs and links the tools/configuration that make a fresh machine feel usable day one. It is not a full project provisioner: repo-specific tools belong with the project or workflow that needs them.
Each top-level directory is a Stow package. Files inside those packages mirror
their final paths under $HOME.
Install Homebrew first if it is not already available:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Install just if this is a completely fresh machine:
brew install justClone this repo:
mkdir -p "$HOME/personal"
git clone https://github.com/thisizkp/dotfiles.git "$HOME/personal/dotfiles"
cd "$HOME/personal/dotfiles"Install the baseline tools and apps from Brewfile:
just bootstrapPreview the symlinks before changing anything:
just dry-runInstall all dotfile packages:
just installjust # show available commands
just bootstrap # install/update Brewfile tools and apps
just doctor # check Brewfile and preview Stow links
just packages # list top-level Stow packages
just dry-run # preview symlinks
just install # create symlinks into $HOME
just restow # refresh existing symlinks
just uninstall # remove symlinks managed by this repoBy default, Stow commands target $HOME. To test against another directory:
STOW_TARGET=/tmp/dotfiles-test just dry-runBrewfile is the personal machine baseline. It should include broadly useful
tools, apps, and tools required by tracked dotfiles.
Codex is intentionally not installed by Brewfile right now. Install it
separately until the Homebrew cask is verified clean on this machine.
Do not add every project dependency here. Install project-specific tools when a repo or workflow asks for them.
Stow will not overwrite existing files. If a file already exists on a new machine, move it aside first:
mv "$HOME/.config/nvim" "$HOME/.config/nvim.backup"
just installDo not commit secrets, tokens, local credentials, private work setup, local app state, machine-specific caches, or generated build artifacts.