README

Optional: If you want to remove one or more extensions that come with this pack:

  1. Install this extension pack.
  2. Uninstall this extension pack without removing the extensions.

After this you can remove single extensions you don't care about. While the pack is installed it won't allow separately uninstalling the extensions.

Included extensions

Node.js Extension Pack
Docker
EditorConfig for VS Code
File Utils
Gitignore
Git Blame
Prettier
Vscode-icons

Recommended font

Fira Code

Recommended font for integrated terminal

Inconsolata for Powerline

Recommended theme

Cobalt2

Recommended settings

  1. Open settings with CMD + ,
  2. Search for settings
  3. Change the [Workbench › Settings: Editor] value to from UI to JSON
  4. Change the [Workbench › Settings: Use Split JSON] value to true
  5. Save with CMD + S
  6. Close and reopen settings again with CMD + ,
  7. Change and replace the text in the right side with the settings below.
  8. Save with CMD + S

Some controversial settings have been commented out, feel free to uncomment or delete.

{
    "editor.cursorBlinking": "phase",
    "editor.cursorStyle": "line",
    "editor.cursorWidth": 2,
    "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
    "editor.lineNumbers": "on",
    "editor.minimap.enabled": false,
    "editor.quickSuggestions": {
        "comments": true,
        "other": true,
        "strings": true
    },
    "editor.renderWhitespace": "none",
    "editor.rulers": [
        120
    ],
    "explorer.confirmDelete": false,
    "files.insertFinalNewline": true,
    "files.trimTrailingWhitespace": true,
    "npm-intellisense.importES6": false,
    "prettier.eslintIntegration": true,
    "prettier.printWidth": 120,
    "prettier.singleQuote": true,
    "prettier.tabWidth": 4,
    "prettier.trailingComma": "all",
    "prettier.useTabs": true,
    "terminal.external.osxExec": "iterm2.app",
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.cursorStyle": "line",
    "terminal.integrated.fontFamily": "Inconsolata for powerline, Fira Code, Menlo, monospace",
    "vsicons.dontShowNewVersionMessage": true,
    "window.zoomLevel": 0,
    "workbench.colorTheme": "Cobalt2",
    "workbench.fontAliasing": "default",
    "workbench.iconTheme": "vscode-icons",
    "workbench.settings.editor": "json",
    "workbench.startupEditor": "welcomePage",
    "workbench.statusBar.feedback.visible": false,
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,
    "workbench.settings.useSplitJSON": true,
    "editor.guides.bracketPairs": true,
    "editor.bracketPairColorization.enabled": true
    // "editor.fontLigatures": true,
    // "files.autoSave": "afterDelay",
}