Skip to content

Instantly share code, notes, and snippets.

@aapis
Last active November 27, 2018 21:25
Show Gist options
  • Save aapis/5aa005268f8f5f4c8d06fb05e7ebc111 to your computer and use it in GitHub Desktop.
Save aapis/5aa005268f8f5f4c8d06fb05e7ebc111 to your computer and use it in GitHub Desktop.
VS Code Settings
// Place your settings in this file to overwrite the default settings
{
"files.exclude": {
"obj/": true
},
"window.nativeTabs": true,
"files.trimTrailingWhitespace": true,
"editor.renderWhitespace": "all",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"editor.cursorStyle": "block",
"editor.wordWrap": "on",
"workbench.sideBar.location": "left",
"window.zoomLevel": 0,
"editor.autoIndent": true,
"editor.rulers": [
80,
120
],
"extensions.ignoreRecommendations": false,
"workbench.activityBar.visible": true,
"git.confirmSync": false,
"editor.renderControlCharacters": false,
"files.autoSave": "afterDelay",
"workbench.colorTheme": "One Dark Pro Vivid",
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"emmet.triggerExpansionOnTab": true,
"[ruby]": {
"editor.tabSize": 2
},
"workbench.statusBar.feedback.visible": false,
"rust.rustup": {
"toolchain": "stable-x86_64-apple-darwin",
"nightlyToolchain": "nightly-x86_64-apple-darwin"
},
"rust.mode": "rls",
"rust.rls": {
"useRustfmt": true
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.defaultDateStyle": "absolute",
"workbench.panel.defaultLocation": "right",
"breadcrumbs.enabled": true,
"php.suggest.basic": false,
"explorer.confirmDragAndDrop": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"gitlens.codeLens.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment