This is only public so I can easily share it across machines. There is probably nothing of interest for you here ... or is there?
My usage is mostly terminal-based on MacOS, Debian Trixie over SSH, or sometimes Crostini (Debian) on Chromebook. Making heavy use of:
- Ghostty
- bash / tmux
- Neovim
- fzf / fd / ripgrep
- cmus
git clone https://github.com/fortes/dotfiles.git
./dotfiles/script/setupOnce you've run setup, you'll still have to do the following universal manual steps (see platform-specific sections for more):
-
Generate the machine's SSH keys via 1Password, then add the key into GitHub and wherever else
-
Add any additional ssh keys into
~/.ssh -
If it's a server, may want to authorize your other public keys on the new machine:
ssh-import-id gh:fortes
-
Add your favorite servers into
.ssh/config.local -
Setup
.gitconfig.local:[user] name = Your Name email = xyz@abc.comIf you need to tweak any config based upon the directory path, do something like
[includeIf "gitdir:~/src/company/"] path = ~/.config/git/company.gitconfig -
Log into Coding agents
# GitHub CLI client gh auth login # Launch Claude Code, which will take you through the flow claude # Launch codex CLI to log in codex # Launch Gemini CLI agent, open and do `/login gemini
script/stow doesn't unstow packages that no longer exist in the repo. After pulling changes that delete a stowed-files/<pkg>/ directory, broken symlinks can linger in $HOME. To remove broken symlinks that point into the dotfiles tree:
find ~ -maxdepth 5 -type l 2>/dev/null \
| while read -r link; do
[ -e "$link" ] && continue
target=$(readlink "$link")
case "$target" in *dotfiles/stowed-files*) rm -v "$link" ;; esac
donegit update-index --skip-worktree ./symlinks/npmrcTo make changes in the future:
git update-index --no-skip-worktree ./symlinks/npmrcAfter setup, open nvim and run the following to install plugins, build native components (fzf sorter), and compile treesitter parsers:
:lua vim.pack.update()
" Must do `:write` to accept the updates, then `:restart`Re-run this command whenever you pull updates that add or change plugins.
- Log into sync accounts, extensions should automatically install
- Configure uBlock Origin
- Enable in private mode
- Enable cloud storage mode. Should do the following for you, but doesn't always work:
- Enable annoyances filters
- Add Bypass paywalls clean filter by copy-pasting the contents
- Log into sync accounts, extensions should automatically install
- Log into 1Password extension
-
Set up Touch ID, Apple account if required
-
Remove all the junk from the dock
-
Enable Night Shift and set to Sunset to Sunrise
-
Turn off Natural Scrolling
-
Increase keyboard repeat rate to max, delay to minimum
-
Change Globe key to Control dictation
-
Disable iCloud syncing of all but Find My Mac & Safari
-
Set
terminal.appprofile, send option as meta key -
May want to install command line tools manually in order to get
git:xcode-select --install -
Run
setup_mac -
Make sure keys repeat properly in apps that disable it by default:
- Antigravity:
defaults write com.google.antigravity ApplePressAndHoldEnabled -bool false - Obsidian:
defaults write md.obsidian ApplePressAndHoldEnabled -bool false - For other apps that have this issue, do the following:
# Get the app id osascript -e 'id of app "Cursor"' # Outputs something like `com.todesktop.xxxxx` defaults write -g com.todesktop.xxxxx ApplePressAndHoldEnabled -bool false
- Antigravity:
-
terminal.appsucks with colors, switch to Ghostty and pin it in the dock -
Make sure
Rectangle.appstarts on login -
Install the 1Password extension in Safari (others should sync automatically)
-
If planning on using Docker a lot, can have Colima auto-start on login by running the following:
brew services start colima
Otherwise, just run
colima startmanually when needed. -
If gaming, install battle.net/Steam via brew:
# May require this first in order to run Battle.net # (Steam has a beta that doesn't require Rosetta) softwareupdate --install-rosetta --agree-to-license brew install --cask battle-net steam # For battle.net, will need to manually run setup to install the app # open /opt/homebrew/Caskroom/battle-net/VERSION/Battle.net-Setup.app
- For servers, make sure to set up email delivery
- Should also set up unattended upgrades via
sudo dpkg-reconfigure unattended-upgrades - You may need to install
avahi-daemon,avahi-dnsconfd,avahi-utils, andlibnss-mdnsto get.localhostnames to resolve properly mergerfsif you want to do any pooling of drivescifs-utilsmay also be useful to have installed for mounting Windows shares
- All the steps from
Chromesection above - Set up "Night Light" if it didn't automatically sync
- Enable Linux, choose a larger disk size (20GB fine?). Double check which debian version it is via
lsb_release -a(should betrixie) - Run
setup_machine - Share
Downloadsfolder with Linux, then symlink vialn -s /mnt/chromeos/MyFiles/Downloads ~/downloads - Change terminal font by going to
chrome-untrusted://terminal/html/nassh_preferences_editor.html- Add
'DejaVu Sans Mono Nerd'to the beginning of "Text Font Family" - Add the following to custom CSS:
@font-face { font-family: 'DejaVu Sans Mono Nerd'; src: url(https://raw.githubusercontent.com/ryanoasis/nerd-fonts/master/patched-fonts/DejaVuSansMono/Regular/DejaVuSansMNerdFontMono-Regular.ttf); font-weight: normal; font-style: normal; }
- Add
Images are built with some frequency, via CI.
# Start container in background
docker-compose up -d
# Connect to tmux session
docker-compose exec dotfiles tmux attach -t main
# Stop/restart as needed
docker-compose stop
docker-compose startGets deleted when you exit.
docker run -it --rm --name dotfiles -v ~/src:/workspaces ghcr.io/fortes/dotfiles:latestPreserves state, but not always running
# First time
docker run -it --name dotfiles -v ~/src:/workspaces ghcr.io/fortes/dotfiles:latest
# Later sessions
docker start -ai dotfilesdocker build -t dotfiles .Then follow normal pattern, just use the local image name like so:
docker run -it --rm --name dotfiles dotfilesSince you have to manually install packages from backports, can be tricky to know what is available. To find out, run the following:
apt-cache policy $(dpkg --list | cut -d' ' -f3)This will list out all the packages installed, then need to search through to manually check which have backports available (pipe to nvim -).
- Firefox cask gets ornery and no longer updates via brew, currently installed once via script, but updates have to happen manually. Need to investigate further.
This repository previously supported Linux GUI environments (using sway/i3) and Windows WSL2. These configurations have been removed as they are no longer actively used. If you need these configurations, check the git history for older implementations.
This repository is licensed under the BSD 3-Clause License. See the LICENSE file for more information.