Skip to content

Instantly share code, notes, and snippets.

@Leodau
Last active February 27, 2023 03:43
Show Gist options
  • Save Leodau/19cd1eda71bed451b8d67bd2a4768585 to your computer and use it in GitHub Desktop.
Save Leodau/19cd1eda71bed451b8d67bd2a4768585 to your computer and use it in GitHub Desktop.
VSCODE LEO Settings
{
// Fonts
"editor.fontFamily": "Fira Code Medium",
"editor.fontSize": 15,
"editor.fontLigatures": true,
// Editor & Usage
"window.zoomLevel": 1,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorWidth": 2,
"editor.minimap.enabled": false,
"editor.smoothScrolling": true,
"editor.scrollBeyondLastLine": true,
"editor.renderWhitespace": "boundary",
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.detectIndentation": false,
"editor.cursorBlinking": "expand",
"editor.folding": false,
"editor.lineHeight": 22,
"editor.renderLineHighlight": "all",
"editor.overviewRulerBorder": false,
"editor.rulers": [79],
"files.autoSave": "onFocusChange",
"window.menuBarVisibility": "toggle",
// Workbench
"workbench.iconTheme": "vscode-icons",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": false,
"workbench.editor.tabSizing": "fit",
"workbench.editor.showIcons": false,
// Terminal & Other
"terminal.integrated.confirmOnExit": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.h": "c",
"*.hpp": "cpp",
"*.php": "php"
},
"workbench.startupEditor": "newUntitledFile",
"javascript.validate.enable": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/web/node_modules": true,
"**/web/build": true,
"**/admin/node_modules": true
},
// Language Specific
"fileHeaderCommentHelper.languageConfigs": {
"language_c": {
"template": [
"/*",
"** EPITECH PROJECT, 2018",
"** $(projectName)",
"** File description:",
"** $(currentFile)",
"*/"
]
},
"language_cpp": {
"template": [
"/*",
"** EPITECH PROJECT, 2018",
"** $(projectName)",
"** File description:",
"** $(currentFile)",
"*/"
]
},
"language_css": {
"template": [
"/*",
"** Michele LEO, 2018",
"** $(currentFile)",
"** Cannot be copied, distributed or edited.",
"*/"
]
}
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"[cpp]": {
"editor.tabSize": 4,
"editor.insertSpaces": false,
},
// "[javascript]": {
// "editor.tabSize": 2,
// "editor.insertSpaces": true,
// "editor.detectIndentation": false,
// },
"[c]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
},
"[makefile]": {
"editor.tabSize": 4,
"editor.insertSpaces": false,
},
"[php]": {
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.tabSize": 2,
},
"javascript.updateImportsOnFileMove.enabled": "always",
"docker-explorer.enableTelemetry": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment