Skip to content

Instantly share code, notes, and snippets.

@hikumealan
Last active November 2, 2023 02:18
Show Gist options
  • Save hikumealan/0e64d04ed875ddfcaea34b995ea45d56 to your computer and use it in GitHub Desktop.
Save hikumealan/0e64d04ed875ddfcaea34b995ea45d56 to your computer and use it in GitHub Desktop.
MacBook Pro Env Setup
1. Install Apps
https://www.spectacleapp.com/
https://desktop.github.com/
https://code.visualstudio.com/
2. Show all hidden files
`defaults write com.apple.Finder AppleShowAllFiles true`
`killall Finder`
3. Create Terminal Profile
`cd ~`
`touch .zshrc`
4. Install Xcode Command Line Tools
`xcode-select --install`
5. Install Homebrew modules
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
```
Error: The following directories are not writable by your user:
/usr/local/share/zsh
/usr/local/share/zsh/site-functions
You should change the ownership of these directories to your user.
sudo chown -R bryanalanolson /usr/local/share/zsh /usr/local/share/zsh/site-functions
And make sure that your user has write permission.
chmod u+w /usr/local/share/zsh /usr/local/share/zsh/site-functions
```
`brew install gh`
`gh auth login`
`brew install git-extras`
7. Install NVM
`curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash`
`nvm install --lts`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment