Skip to content

Instantly share code, notes, and snippets.

@jaasonw
Last active February 28, 2019 17:56
Show Gist options
  • Save jaasonw/e714bf3acf2f65ab06490815d2072c43 to your computer and use it in GitHub Desktop.
Save jaasonw/e714bf3acf2f65ab06490815d2072c43 to your computer and use it in GitHub Desktop.
vs code settings
{
// EDITOR
"editor.fontSize": 18,
"editor.fontFamily": "Source code pro",
"editor.formatOnPaste": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.mouseWheelZoom": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.suggest.localityBonus": true,
"editor.rulers": [80],
"editor.snippetSuggestions": "top",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"files.autoSave": "afterDelay",
"editor.tabCompletion": "on",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
// JAVA
"java.home": "C:\\Program Files\\Java\\jdk-10.0.1",
"java.errors.incompleteClasspath.severity": "ignore",
// GIT + GITLENS
"gitlens.currentLine.enabled": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.hovers.currentLine.over": "line",
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"gitlens.historyExplorer.enabled": true,
"explorer.confirmDelete": false,
"workbench.colorTheme": "City Lights",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment