Important
DO NOT INSTALL XCODE! It's not necessary anymore.
Open the terminal:
xcode-select --installThis will download all the CLI devtools necessary.
# Install brew (get up-to-date method on brew.sh).
open https://brew.shbrew install dropbox- In "Backups", disable everything
- In "Sync"…
- If possible, stick to the old Dropbox location (
/Users/$user/Dropbox/) - Set "Default sync state for new files" to "Available offline"
- If possible, stick to the old Dropbox location (
Caution
Then, let Dropbox sync completely. Don't do anything. This can take a lot of time.
brew install 1PasswordCaution
Obsolete: use 1Password to store SSH Key (using ed25519).
Generate a new key:
ssh-keygen -t rsa -b 4096 -C "krokmou@berk.com"
pbcopy < ~/.ssh/id_rsa.pubThen, add it on Github.
For the name, use either:
Private — $NAME$COMPANY_NAME — $NAME
Where $NAME is taken from the "About This Mac" panel.
For example:
Private — MacBook Pro (15-inch, 2016)
cd ~
mkdir Developer
chmod 700 Developer
chmod +a "group:everyone deny delete" Developer
cd Developer
# Repo.
git clone git@github.com:solarsailer/dotfiles.git
cd dotfilesNote: we use Developer instead of Code. macOS adds an icon to folders named "Developer".
First, you need to activate Alfred's Powerpack.
Then, authorize Dropbox's Apps folder to be used for syncing Alfred:
defaults write com.runningwithcrayons.Alfred-Preferences dropbox.allowappsfolder -bool TRUEFinally, a few settings to set manually on a per-Mac basis:
- General
- Set
⌘ + Spaceas launcher shortcut - In permissions, add Alfred to "Accessibility" and "Full Disk Access"
- Set
- Appearance
- In Light Mode, go to Appearance, set "Solar Sailer v4 (L)"
- Switch to Dark Mode, set "Solar Sailer v4 (D)"
- Switch back to Light Mode
- Features, Snippets:
- Activate "Automatically expand snippets by keyword"
To set your git user.email & user.name, create a .gitconfig file manually in your $HOME folder and copy those values there:
[user]
name = Firstname Lastname
email = krokmou@berk.com
Move to $HOME/Developer/dotfiles. Then:
# Temporarily add brew to $PATH (before using fish).
export PATH=/opt/homebrew/bin:$PATH
# Install stow.
brew install stow
# Configure stow (see stow.bash in `scripts`).
stow --target=$HOME -R stow
# Configure fish.
stow -R fish
# Install fish.
brew install fish
# Then, read below to setup fish as default shell.Stow is configured to use "../.." as the default target. That means that you should put the dotfiles in a folder in your home. Like "$HOME/Developer/dotfiles".
If you have followed the previous instructions, it should already be there, making this step useless.
Set fish as default shell:
- Check where fish is installed:
which fish - Add one of those:
- Add
/opt/homebrew/bin/fishto/etc/shells - Add
/usr/local/bin/fishto/etc/shells - (Just need to be there, at the end, nothing more)
- Add
- Run one of those:
chsh -s /opt/homebrew/bin/fishchsh -s /usr/local/bin/fish
Then:
fish_theme_classic # "Install" the theme
fisher install jethrokuan/z
fisher install jorgebucaran/getopts.fishchange_computer_name $NAME
Use pyenv to manage Python/pip properly:
pyenv install 3.$X
pyenv global 3.$X
pip install --upgrade pip
Follow the different scripts in the scripts folder. Use the lines (or full script) if applicable to your situation.
I don't recommend to blindly run everything, but those are a good knowledge base to bootstrap a mac.
Note
Fonts are installed with Homebrew.
- Family: JetBrains Mono (Fira Code as fallback)
- Size:
14
Go to: Accessibility > Display > Show window title icons.
Sync your contact, then in the Contacts app, choose your contact card, click on the "Card" menu, then "Make this my card".
Use the alternative (and better) French keyboard in system/Keyboard/frenumin.keylayout and install it.
Copy the .keylayout to ~/Library/Keyboard Layouts/.
If you use a non-retina monitor, run this command:
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
macOS Mojave removed the "Use LCD font smoothing when available" option in "General". It's better for retina screen, but awful on non-retina. This command will re-activate this option.
DO NOT USE with retina screens.
Thanks to Peter Hajas and OSX for Hackers for the inspiration.