Skip to content

Instantly share code, notes, and snippets.

@szy0syz
Last active October 25, 2017 02:36
Show Gist options
  • Save szy0syz/1e96f71c84fcc956aafd7dfcf6ffdb77 to your computer and use it in GitHub Desktop.
Save szy0syz/1e96f71c84fcc956aafd7dfcf6ffdb77 to your computer and use it in GitHub Desktop.
szy0syz-mac-init

szy0syz-mac-init

我的Mac初始化步骤记录

① installation

  • oh-my-zsh

    • sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  • Apps

    • Alfred
    • VSCode
    • WebStorm
    • Dash
    • Tower
    • ShadowsocksX-NG
    • PDF Expert
    • Charles

② initialization

oh-my-zsh

  • 安装及使用插件管理器 "Antigen"
    • curl -L git.io/antigen > antigen.zsh
    • source ./antigen.zsh
    • antigen bundle git
    • antigen bundle command-not-found
    • antigen bundle zsh-users/zsh-syntax-highlighting
    • antigen bundle zsh-users/zsh-autosuggestions
    • antigen theme robbyrussell
    • antigen apply

VSCode

config

{
    "git.confirmSync": false,
    "workbench.colorTheme": "One Dark Pro",
    "window.zoomLevel": 0.1,
    "[javascript]": {
        "editor.insertSpaces": true,
        "editor.tabSize": 2
    },
    "editor.renderIndentGuides": true,
    "git.enableSmartCommit": true,
    "workbench.iconTheme": "vscode-icons",
    "emmet.triggerExpansionOnTab": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment