Skip to content

Instantly share code, notes, and snippets.

@chooper
Last active October 25, 2015 06:58
Show Gist options
  • Save chooper/3d18426dcb4d1d64ce1d to your computer and use it in GitHub Desktop.
Save chooper/3d18426dcb4d1d64ce1d to your computer and use it in GitHub Desktop.
Work laptop setup

Work laptop setup

  1. System Prefs > Security & Privacy > Turn on filevault

  2. System Prefs > Trackpad > Scroll & Zoom > Uncheck “Scroll direction: Natural”

  3. System Prefs > Energy Saver > Turn off display after: 20 minutes

  4. Install security updates

  5. Open Safari and download Chrome

  6. Install Chrome

  7. Open Chrome and download LastPass

  8. Install LastPass

  9. Re-launch Chrome and log into LastPass

  10. Sign in to the Chrome sign-in tab and link data with Chrome profile

  11. Add any other Chrome profiles you care about

  12. Download and install iTerm2

  13. Install Xcode from the app store (it’s 4GB - this will take a while)

  14. Install Slack from the app store

    1. Sign into Slack
  15. Install harvest from the app store

    1. Sign in Harvest

    2. Prefs > Advanced > Automatically start on login

  16. Download and install Dropbox

    1. Sign in to Dropbox
  17. sudo xcodebuild -license

  18. Install homebrew once Xcode is installed http://brew.sh/

    1. xcode-select --install

    2. brew doctor

  19. Install golang 1.5 https://golang.org/dl/

    mkdir -p $HOME/go
    export GOPATH=$HOME/go
    cat > ~/.profile <<EOF
    export GOPATH=$HOME/go
    EOF
    
  20. Install pathogen https://github.com/tpope/vim-pathogen

  21. Install vim-go https://github.com/fatih/vim-go

    1. Add to vimrc:
    set nocompatible
    execute pathogen#infect()
    set number
    filetype on
    filetype plugin on
    syntax on
    let g:go_highlight_functions = 1
    let g:go_highlight_methods = 1
    let g:go_highlight_structs = 1
    let g:go_highlight_operators = 1
    let g:go_highlight_build_constraints = 1
    
    1. Open vim and :GoInstallBinaries

    2. cd .vim/bundle/vim-go && vim -c "helptags doc/“

```
$ git config --global user.name "Charles Hooper"
$ git config --global user.email charles@truss.works
```
```
ssh-keygen -t dsa
# default location
# set passphrase
pbcopy < ~/.ssh/id_dsa.pub
```

Now add the key on github
  1. Install spotify

  2. Install AWS CLI: brew install awscli

    1. aws configure
@ferlatte
Copy link

System Prefs > Trackpad > Scroll & Zoom > Uncheck “Scroll direction: Natural”

BOOO JOIN US IN THE FUTURE, CAVE PERSON.

@chooper
Copy link
Author

chooper commented Oct 25, 2015

Dude it's mislabeled. Swiping your hand down ought to make page scroll down! That's natural!

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