Created
February 28, 2017 12:11
-
-
Save borisschapira/9c02864976689e4a969e80a5cae29101 to your computer and use it in GitHub Desktop.
Configuration VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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