Skip to content

Instantly share code, notes, and snippets.

@Gerst20051
Last active December 8, 2022 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gerst20051/43c949e2705abef41eb485159d6ee399 to your computer and use it in GitHub Desktop.
Save Gerst20051/43c949e2705abef41eb485159d6ee399 to your computer and use it in GitHub Desktop.
VSCode User Settings (Passport MacBook)
{
"editor.cursorBlinking": "phase",
"editor.dragAndDrop": false,
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"files.exclude": {
"**/.DS_Store": true,
"**/.build": true,
"**/.git": true,
"**/.hg": true,
"**/.serverless": true,
"**/.svn": true,
"**/.webpack": true,
"**/CVS": true,
"**/coverage": true,
"**/node_modules": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.startupEditor": "newUntitledFile"
}
@Gerst20051
Copy link
Author

Gerst20051 commented Aug 17, 2018

Using the Guides extension forces you to disable the editor's renderIndentGuides setting.

Edit: editor.renderIndentGuides is now deprecated use editor.guides.indentation instead.

https://stackoverflow.com/questions/35741301/default-indent-line-guide-in-visual-studio-code

@Gerst20051
Copy link
Author

Gerst20051 commented Dec 8, 2022

https://code.visualstudio.com/docs/getstarted/settings

The Settings editor is the UI that lets you review and modify setting values that are stored in a settings.json file.

You can review and edit this file directly by opening it in the editor with the Preferences: Open Settings (JSON) command.

[$]> jq . ~/Library/Application\ Support/Code/User/settings.json

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