Skip to content

Instantly share code, notes, and snippets.

@hocine87
Created April 8, 2019 13:46
Show Gist options
  • Save hocine87/79763bcced9d27e922eaed4affb6dbbe to your computer and use it in GitHub Desktop.
Save hocine87/79763bcced9d27e922eaed4affb6dbbe to your computer and use it in GitHub Desktop.
My VSCode Settings
{
// UI
"editor.fontSize": 12,
"editor.tabSize": 1,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"window.zoomLevel": 0,
// Comportment
"explorer.confirmDelete": false,
"editor.detectIndentation": true,
"editor.roundedSelection": false,
"editor.renderIndentGuides": true,
"explorer.openEditors.visible": 0,
"html.format.wrapLineLength": 0,
"editor.trimAutoWhitespace": true,
"editor.lineNumbers": "on",
"editor.mouseWheelZoom": true,
// files
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"explorer.autoReveal": false,
"editor.formatOnPaste": true,
"files.autoSave": "afterDelay",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
// disable github integration
// because i using github desktop
"git.enabled": false,
"git.path": null,
"git.autofetch": false,
"git.autorefresh": false,
"git.autoRepositoryDetection": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment