Last active
November 26, 2022 11:09
-
-
Save olygood/a2ccd1b5cd513b78b1f97d22194cb5dd to your computer and use it in GitHub Desktop.
préférence visual studio 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
{ | |
"sync.gist": "fc99bd18f5e19914c135375d46e4e8bc", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"workbench.colorTheme": "Dracula", | |
"explorer.confirmDragAndDrop": false, | |
"explorer.compactFolders": false, | |
"editor.fontSize": 16, | |
"editor.wordWrap": "on", | |
"emmet.syntaxProfiles":{ | |
"javascript":"jsx" | |
}, | |
"emmet.includeLanguages":{ | |
"javascript":"javascriptreact" | |
}, | |
"html.hover.documentation": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"git.ignoreWindowsGit27Warning": true, | |
"git.enabled": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"liveServer.settings.fullReload": true, | |
"window.zoomLevel": 2, | |
"files.autoSave": "afterDelay", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"security.workspace.trust.untrustedFiles": "open" | |
} |
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
//settings graphikart | |
{ | |
"sync.gist": "fc99bd18f5e19914c135375d46e4e8bc", | |
"explorer.confirmDragAndDrop": false, | |
"explorer.compactFolders": false, | |
"editor.fontSize": 16, | |
"editor.fontFamily": "Consolas, 'Courier New', monospace", | |
"editor.lineHeight": 20, | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": false, | |
"editor.renderWhitespace": "trailing", | |
"editor.linkedEditing": true, | |
"editor.occurrencesHighlight": false, | |
"editor.suggest.insertMode": "replace", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"workbench.tree.indent": 15, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.colorTheme": "Dracula Soft", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.enablePreview": false, | |
"workbench.colorCustomizations": { | |
"[Dracula Soft]": { | |
"editor.selectionBackground": "#3d59a1", | |
"editor.selectionHighlightBackground": "#3d59a1" | |
} | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.syntaxProfiles":{ | |
"javascript":"jsx" | |
}, | |
"emmet.includeLanguages":{ | |
"javascript":"javascriptreact" | |
}, | |
"html.hover.documentation": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"git.ignoreWindowsGit27Warning": true, | |
"git.enabled": true, | |
"git.enableSmartCommit": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"liveServer.settings.fullReload": true, | |
"window.zoomLevel": 2, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"files.autoSave": "afterDelay", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"javascript.preferences.importModuleSpecifierEnding": "js", | |
"typescript.preferences.importModuleSpecifierEnding": "js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment