Skip to content

Instantly share code, notes, and snippets.

@alex-page
Last active December 7, 2021 05:33
Show Gist options
  • Save alex-page/56e6400b49595ff26eb0feba1799c73a to your computer and use it in GitHub Desktop.
Save alex-page/56e6400b49595ff26eb0feba1799c73a to your computer and use it in GitHub Desktop.
osx setup

OSX set up

Download OSX developer fonts

https://developer.apple.com/fonts/

terminal

Preferences -> Profile -> SF Mono Light, 14px

Preferences -> Profile -> Blink cursor

.zshrc

export PS1="%U%n@%m | %d%u
⚡️ "

Shopify dev

Install dev

eval "$(curl -sS https://up.dev)"

Disable notifications for dev.

dev config set suppress-info.notifications.up true

Change the default dev clone location.

dev config set srcpath.default ~/Sites

Finder

Show all hidden files.

defaults write com.apple.Finder AppleShowAllFiles YES

Finder preferences -> New finder windows show "Home directory"

Finder preferences -> Sidebar -> Turn off junk

Finder preferences -> Advanced -> Show all file name extensions

VSCode

Install code cli ⌘+shift+p "Shell command: Install 'code' command in PATH"

Settings

{
  "window.autoDetectColorScheme": true,
  "workbench.preferredLightColorTheme": "GitHub Light",
  "workbench.preferredDarkColorTheme": "GitHub Dark",
  "editor.fontSize": 16,
  "editor.tabSize": 2,
  "editor.renderWhitespace": "all",
  "editor.fontFamily": "SF Mono",
  "editor.fontWeight": "300",
  "editor.formatOnSave": true,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact",
    "nunjucks": "html"
  },
  "workbench.colorTheme": "GitHub Dark",
  "window.zoomLevel": 1,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  }
}

Safari

Modify what shows on a new tab by right clicking the new tab page.

Screen Shot 2021-12-06 at 9 18 12 PM

Preferences -> Autofill -> Disable autofill usernames and passwords.

Change default search engine to duck duck go.

Show develop menu in topbar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment