Skip to content

Instantly share code, notes, and snippets.

@n8e
Created September 22, 2017 13:21
Show Gist options
  • Save n8e/0b0349c764d584a84dd7797dc7452035 to your computer and use it in GitHub Desktop.
Save n8e/0b0349c764d584a84dd7797dc7452035 to your computer and use it in GitHub Desktop.
vs-code custom settings
{
"workbench.sideBar.location": "left",
"editor.fontFamily": "Ubuntu Mono,Source Code Pro, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"workbench.editor.showTabs": false,
"editor.tabSize": 2,
"files.hotExit": "off",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/lcov-report": true,
"coverage/coverage.json": true,
"coverage/lcov.info": true,
"**/target/doc": true,
"**/target/rls": true,
"**/target/debug": true,
"**/target/release": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"eslint.autoFixOnSave": true,
// Columns at which to show vertical rulers
"editor.rulers": [
100
],
"editor.renderIndentGuides": true,
"editor.dragAndDrop": true,
"workbench.startupEditor": "newUntitledFile",
"editor.emptySelectionClipboard": false,
"workbench.iconTheme": "flatland-icon-theme",
"terminal.integrated.fontFamily": "ubuntu mono",
"terminal.integrated.fontSize": 16,
"editor.autoIndent": true,
"editor.fontLigatures": true,
"workbench.fontAliasing": "antialiased",
"extensions.ignoreRecommendations": false,
"rust-client.revealOutputChannelOn": "info",
"rust-client.showStdErr": true,
"window.titleBarStyle": "custom",
"workbench.colorTheme": "DesertEx"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment