Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.12 KB

mac-setup.md

File metadata and controls

37 lines (30 loc) · 1.12 KB

Mac Setup

  1. Setup bash
  2. Setup Homebrew
  3. Setup NVM or Node

Dev Environment

  1. Install IDE of choice
  2. Setup git
  3. Setup npm
  4. Setup SSH
  5. Setup VM

Extras

  1. Install f.lux to make you life better
  2. Setup finder to have markdown preview
    • Download the latest release
    • Extract it somewhere temporarily, go into the extracted directory
    • Copy the QLMarkdown.qlgenerator file into ~/Library/QuickLook
      • mv QLMarkdown.qlgenerator/ ~/Library/QuickLook
      • you may need to create this directory mkdir ~/Library/QuickLook
    • Relaunch Finder by alt+right-clicking on the icon in the dock and selecting the option at the bottom.
  3. Fix Home and End Keys
mkdir -p ~/Library/KeyBindings
vi ~/Library/KeyBindings/DefaultKeyBinding.dict

{
"\UF729"  = "moveToBeginningOfLine:";
"\UF72B"  = "moveToEndOfLine:";
"$\UF729" = "moveToBeginningOfLineAndModifySelection:";
"$\UF72B" = "moveToEndOfLineAndModifySelection:";
}