Skip to content

Instantly share code, notes, and snippets.

@borisschapira
Created February 28, 2017 12:11
Show Gist options
  • Save borisschapira/9c02864976689e4a969e80a5cae29101 to your computer and use it in GitHub Desktop.
Save borisschapira/9c02864976689e4a969e80a5cae29101 to your computer and use it in GitHub Desktop.
Configuration VS Code
{
// Police à ligature
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
// Taille maximum des lignes et
// affichage des espaces
"editor.wrappingColumn": 80,
"editor.wordWrap": true,
"editor.renderWhitespace": "boundary",
// Taille de police
"editor.fontSize": 16,
"editor.lineHeight": 24,
// Gestion des extensions
"extensions.autoUpdate": true,
// VSIcons plugin
"vsicons.projectDetection.autoReload": true,
// Sauvegarde automatique
"files.autoSave": "onFocusChange"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment