Skip to content

Instantly share code, notes, and snippets.

@mlhoutel
Last active September 2, 2021 19:44
Show Gist options
  • Save mlhoutel/70fb9e45bd030e11ae8cb048841b9078 to your computer and use it in GitHub Desktop.
Save mlhoutel/70fb9e45bd030e11ae8cb048841b9078 to your computer and use it in GitHub Desktop.
{
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"workbench.colorTheme": "Horizon",
"workbench.iconTheme": "helium-icon-theme",
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.cursorBlinking": "expand",
"editor.mouseWheelZoom": true,
"C_Cpp.default.includePath": [
"D:/Librairies/**",
"{$workspaceFolder}/include/**",
"{$workspaceFolder}/**"
],
"terminal.integrated.profiles.windows": {
"Cmder": {
"path": "${env:windir}\\System32\\cmd.exe",
"args": ["/K", "D:\\Programmes\\Cmder\\vscode.bat"],
"icon": "terminal-cmd"
}
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"redhat.telemetry.enabled": false,
"git.confirmSync": false,
"editor.formatOnType": false,
"editor.lineHeight": 23,
"editor.wordWrap": "on",
"window.zoomLevel": 1,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"javascript.format.enable": false,
"editor.autoIndent": "advanced",
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.detectIndentation": false,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.smoothScrolling": true,
"vim.handleKeys": {
"<C-c>": false,
"<C-v>": false
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment