Skip to content

Instantly share code, notes, and snippets.

@the-glima
Last active March 12, 2021 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save the-glima/4ec7daa5d47ff0ba73df to your computer and use it in GitHub Desktop.
Save the-glima/4ec7daa5d47ff0ba73df to your computer and use it in GitHub Desktop.
My installation OS guide

Installation guide from scratch

MacOS

Development

Oh My ZShell

Installing Agnoster Theme:

  1. Download Agnoster Theme and add to ~/.oh-my-szh/themes.
  2. Download and install Source Code Pro Font.
  3. Enable Source Code Pro Font on your terminal, text editor, IDE.

Git Settings

  • git config --global color.ui auto
  • git config --global push.default current
  • git config --global user.name "Gabriel Lima"
  • git config --global user.email "email.gabriel.lima@gmail.com"
  • git config --global core.excludesFile '~/.gitignore'

Apps

Others

Show hidden files on Finder:

$ defaults write com.apple.Finder AppleShowAllFiles true
$ killall Finder`

To hide files again, change the “true” in the step above to “false”

Gists on VSCode

  1. Check if the extension in installed.
  2. Open up GitHub site.
  3. Go to Developer Settings
  4. Go to “Personal access tokens”
  5. Click “Generate new token”
  6. Under “Select scopes”, select “gist”
  7. Click “Generate token”
  8. Copy the token and keep safe.
  9. On VSCode CMD + P > Gist: select profile. Follor the instructions.

Iterm

Opening new window/tag in current directory
  1. Click iTerm2 → Preferences → Profiles
  2. In “Working Directory” section select “Reuse previous session’s directory”
  3. Try to new tab or press ‘Command ⌘+ D’ or ‘Command ⌘+ Shift ⇧ + D’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment