Advertisement
Ahmed_Negm

Untitled

Nov 4th, 2022
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 8.10 KB | None | 0 0
  1. {
  2.   "workbench.iconTheme": "vscode-icons",
  3.   "workbench.editorAssociations": {
  4.     "*.ipynb": "jupyter.notebook.ipynb",
  5.     "*.html": "default"
  6.   },
  7.   "files.autoSave": "onFocusChange",
  8.   "files.associations": {
  9.     "random": "cpp",
  10.     "*.tcc": "cpp",
  11.     "deque": "cpp",
  12.     "list": "cpp",
  13.     "string": "cpp",
  14.     "unordered_map": "cpp",
  15.     "unordered_set": "cpp",
  16.     "vector": "cpp"
  17.   },
  18.   "editor.mouseWheelZoom": true,
  19.   "files.autoGuessEncoding": true,
  20.   "debug.terminal.clearBeforeReusing": true,
  21.   "task.problemMatchers.neverPrompt": false,
  22.   "gnuGlobal.debugMode": "Enabled",
  23.   "gnuGlobal.autoUpdate": "Enabled",
  24.   "c-cpp-compile-run.run-in-external-terminal": true,
  25.   "code-runner.clearPreviousOutput": true,
  26.   "code-runner.runInTerminal": true,
  27.   "code-runner.saveAllFilesBeforeRun": true,
  28.   "code-runner.saveFileBeforeRun": true,
  29.   "code-runner.languageIdToFileExtensionMap": {
  30.     "bat": ".bat",
  31.     "powershell": ".ps1",
  32.     "typescript": ".ts"
  33.   },
  34.   "tasks": [
  35.     {
  36.       "label": "build main.cpp",
  37.       "type": "shell",
  38.       "command": "/usr/bin/g++",
  39.       "args": [
  40.         "-g",
  41.         "-Wall",
  42.         "-Wextra",
  43.         "-Wshadow",
  44.         "-Wformat=2",
  45.         "-Wfloat-equal",
  46.         "-o",
  47.         "main",
  48.         "main.cpp",
  49.         "-DAKP"
  50.       ],
  51.       "group": {
  52.         "kind": "build",
  53.         "isDefault": true
  54.       }
  55.     }
  56.   ],
  57.   "diffEditor.wordWrap": "off",
  58.   "editor.accessibilitySupport": "off",
  59.   "editor.suggestSelection": "first",
  60.   "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  61.   "python.autoComplete.addBrackets": true,
  62.   "python.globalModuleInstallation": true,
  63.   "editor.tokenColorCustomizations": {
  64.     "textMateRules": [
  65.       {
  66.         "name": "One Dark italic",
  67.         "scope": [
  68.           "comment",
  69.           "entity.other.attribute-name",
  70.           "keyword",
  71.           "markup.underline.link",
  72.           "storage.modifier",
  73.           "storage.type",
  74.           "string.url",
  75.           "variable.language.super",
  76.           "variable.language.this"
  77.         ],
  78.         "settings": {
  79.           "fontStyle": "italic"
  80.         }
  81.       },
  82.       {
  83.         "name": "One Dark italic reset",
  84.         "scope": [
  85.           "keyword.operator",
  86.           "keyword.other.type",
  87.           "storage.modifier.import",
  88.           "storage.modifier.package",
  89.           "storage.type.built-in",
  90.           "storage.type.function.arrow",
  91.           "storage.type.generic",
  92.           "storage.type.java",
  93.           "storage.type.primitive"
  94.         ],
  95.         "settings": {
  96.           "fontStyle": ""
  97.         }
  98.       }
  99.     ]
  100.   },
  101.   "code-runner.executorMap": {
  102.     "javascript": "node",
  103.     "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
  104.     "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  105.     "cpp": "cd $dir && g++ -std=c++17 -Wshadow -Wall -o -g -fsanitize=address -fsanitize=undefined -D_GLIBCXX_DEBUG $fileName -o $fileNameWithoutExt && timeout -k 0 1s $dir$fileNameWithoutExt",
  106.     "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  107.     "php": "php",
  108.     "python": "python3 -u",
  109.     "perl": "perl",
  110.     "perl6": "perl6",
  111.     "ruby": "ruby",
  112.     "go": "go run",
  113.     "lua": "lua",
  114.     "groovy": "groovy",
  115.     "powershell": "powershell -ExecutionPolicy ByPass -File",
  116.     "bat": "cmd /c",
  117.     "shellscript": "bash",
  118.     "fsharp": "fsi",
  119.     "csharp": "scriptcs",
  120.     "vbscript": "cscript //Nologo",
  121.     "typescript": "ts-node",
  122.     "coffeescript": "coffee",
  123.     "scala": "scala",
  124.     "swift": "swift",
  125.     "julia": "julia",
  126.     "crystal": "crystal",
  127.     "ocaml": "ocaml",
  128.     "r": "Rscript",
  129.     "applescript": "osascript",
  130.     "clojure": "lein exec",
  131.     "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
  132.     "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
  133.     "racket": "racket",
  134.     "scheme": "csi -script",
  135.     "ahk": "autohotkey",
  136.     "autoit": "autoit3",
  137.     "dart": "dart",
  138.     "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
  139.     "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
  140.     "haskell": "runhaskell",
  141.     "nim": "nim compile --verbosity:0 --hints:off --run",
  142.     "lisp": "sbcl --script",
  143.     "kit": "kitc --run",
  144.     "v": "v run",
  145.     "sass": "sass --style expanded",
  146.     "scss": "scss --style expanded",
  147.     "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
  148.     "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  149.     "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  150.     "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  151.     "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
  152.   },
  153.   "editor.renderWhitespace": "none",
  154.   "editor.minimap.enabled": false,
  155.   "breadcrumbs.enabled": false,
  156.   "editor.wordWrap": "on",
  157.   "editor.inlineHints.enabled": false,
  158.   "editor.linkedEditing": true,
  159.   "scm.alwaysShowActions": true,
  160.   "C_Cpp.vcFormat.indent.preserveWithinParentheses": true,
  161.   "C_Cpp.vcFormat.newLine.beforeWhileInDoWhile": true,
  162.   "C_Cpp.vcFormat.newLine.closeBraceSameLine.emptyFunction": true,
  163.   "C_Cpp.vcFormat.newLine.closeBraceSameLine.emptyType": true,
  164.   "C_Cpp.vcFormat.newLine.scopeBracesOnSeparateLines": true,
  165.   "C_Cpp.vcFormat.newLine.beforeOpenBrace.type": "newLine",
  166.   "C_Cpp.vcFormat.indent.withinParentheses": "alignToParenthesis",
  167.   "C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "newLine",
  168.   "C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "newLine",
  169.   "C_Cpp.vcFormat.newLine.beforeOpenBrace.lambda": "newLine",
  170.   "C_Cpp.vcFormat.newLine.beforeOpenBrace.namespace": "newLine",
  171.   "C_Cpp.vcFormat.wrap.preserveBlocks": "allOneLineScopes",
  172.   "C_Cpp.vcFormat.indent.braces": true,
  173.   "C_Cpp.vcFormat.indent.caseContentsWhenBlock": true,
  174.   "C_Cpp.vcFormat.indent.caseLabels": true,
  175.   "C_Cpp.vcFormat.indent.preserveComments": true,
  176.   "[cpp]": {
  177.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  178.   },
  179.   "editor.fontFamily": "'Fira Code', 'fedora', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
  180.   "terminal.integrated.fontFamily": "monospace",
  181.   "editor.fontLigatures": true,
  182.   "editor.codeLensFontFamily": "Fira Code",
  183.   "editor.defaultFormatter": "esbenp.prettier-vscode",
  184.   "C_Cpp.default.cppStandard": "c++20",
  185.   "C_Cpp.default.cStandard": "c17",
  186.   "explorer.confirmDelete": false,
  187.   "shareCode.pastebin.username": "7oSkaaa",
  188.   "python.analysis.completeFunctionParens": true,
  189.   "python.defaultInterpreterPath": "python3",
  190.   "code-runner.temporaryFileName": "temp_file",
  191.   "python.pythonPath": "python3",
  192.   "command": "python3",
  193.   "jupyter.askForKernelRestart": false,
  194.   "workbench.settings.openDefaultSettings": true,
  195.   "markdown-preview-enhanced.previewTheme": "one-dark.css",
  196.   "vsicons.dontShowNewVersionMessage": true,
  197.   "files.exclude": {
  198.     "**/.classpath": true,
  199.     "**/.project": true,
  200.     "**/.settings": true,
  201.     "**/.factorypath": true
  202.   },
  203.   "scm.inputFontFamily": "Fira Code",
  204.   "bracketPairColorizer.depreciation-notice": false,
  205.   "[django-html]": {
  206.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  207.   },
  208.   "editor.unicodeHighlight.nonBasicASCII": false,
  209.   "C_Cpp.autocompleteAddParentheses": true,
  210.   "terminal.integrated.copyOnSelection": true,
  211.   "files.participants.timeout": 1500,
  212.   "explorer.confirmDragAndDrop": false,
  213.   "diffEditor.ignoreTrimWhitespace": false,
  214.   "workbench.editor.enablePreview": false,
  215.   "git.autofetch": true,
  216.   "gitlens.advanced.messages": {
  217.     "suppressGitMissingWarning": true
  218.   },
  219.   "editor.fontFamily": "'Fira Code'",
  220.   "editor.fontLigatures": true,
  221.   "editor.fontSize": 16,
  222.   "editor.inlineSuggest.enabled": true,
  223.   "github.copilot.advanced": {},
  224.   "github.copilot.enable": {
  225.     "*": true,
  226.     "yaml": false,
  227.     "plaintext": false,
  228.     "markdown": true
  229.   },
  230.   "editor.formatOnSave": true,
  231.   "html.format.contentUnformatted": "",
  232.   "remoteHub.commitDirectlyWarning": "off"
  233. }
  234.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement