Skip to content

Instantly share code, notes, and snippets.

@janpaul
Created April 13, 2020 17:54
Show Gist options
  • Save janpaul/caff9e2e6f293ff933533838730ed6ee to your computer and use it in GitHub Desktop.
Save janpaul/caff9e2e6f293ff933533838730ed6ee to your computer and use it in GitHub Desktop.
Visual Studio Code settings
{
"editor.fontSize": 15,
"editor.fontFamily": "'JetBrains Mono', Hack, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
80,
120
],
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.cache": true,
"**/.idea": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.cache": true,
"**/.idea": true,
"**/.git": true
},
"terminal.external.osxExec": "iTerm2.app",
"terminal.integrated.fontSize": 15,
"git.autofetch": true,
"git.enableSmartCommit": true,
"window.zoomLevel": 0,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Dark Pro",
"workbench.fontAliasing": "antialiased",
"vsicons.dontShowNewVersionMessage": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"cmake.configureOnOpen": true,
"C_Cpp.updateChannel": "Insiders",
"problems.showCurrentInStatus": true,
"rust.rustup": {
"toolchain": "stable-x86_64-apple-darwin"
},
"rust.mode": "rls",
"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment