Optional: If you want to remove one or more extensions that come with this pack:
- Install this extension pack.
- 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.
Node.js Extension Pack
Docker
EditorConfig for VS Code
File Utils
Gitignore
Git Blame
Prettier
Vscode-icons
- Open settings with
CMD + ,
- Search for
settings
- Change the
[Workbench › Settings: Editor]
value to fromUI
toJSON
- Change the
[Workbench › Settings: Use Split JSON]
value to true - Save with
CMD + S
- Close and reopen settings again with
CMD + ,
- Change and replace the text in the right side with the settings below.
- 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",
}