Skip to content

Instantly share code, notes, and snippets.

@cnolimit
Last active February 17, 2020 12:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cnolimit/816c400703dd531d6e90d2d679b30252 to your computer and use it in GitHub Desktop.
Save cnolimit/816c400703dd531d6e90d2d679b30252 to your computer and use it in GitHub Desktop.

Dev Setup

System Tools

Global Packages

Productivity

Editor - VSCode

Open the Command Palette ⇧⌘P and type 'shell command' to find the Shell Command: Install 'code' command in PATH command

Plugins

Settings

{
  "atomKeymap.promptV3Features": true,
  "editor.fontSize": 14,
  "editor.lineHeight": 21,
  "editor.letterSpacing": 0.3,
  "editor.fontWeight": "400",
  "editor.formatOnSave": true,
  "editor.minimap.enabled": false,
  "editor.multiCursorModifier": "ctrlCmd",
  "editor.scrollBeyondLastLine": false,
  "explorer.confirmDragAndDrop": false,
  "explorer.openEditors.visible": 0,
  "extensions.ignoreRecommendations": true,
  "files.autoSave": "off",
  "files.exclude": {
    "**/.DS_Store": true,
    "**/.git": true,
    "**/.hg": true,
    "**/.idea": true,
    "**/.svn": true,
    "**/.vscode": true,
    "**/CVS": true,
    "**/node_modules": true
  },
  "javascript.validate.enable": false,
  "prettier.requireConfig": false,
  "window.zoomLevel": 0,
  "workbench.colorTheme": "Cobalt2",
  "workbench.editor.showTabs": true,
  "workbench.startupEditor": "newUntitledFile",
  "editor.tabSize": 2,
  "editor.gotoLocation.multiple": "goto",
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[json]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment