Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2025
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 6.44 KB | None | 0 0
  1. {
  2.     "cmake.configureOnOpen": true,
  3.     "editor.rulers": [
  4.         80,
  5.         120
  6.     ],
  7.     "[cpp]": {
  8.         "editor.defaultFormatter": "xaver.clang-format"
  9.     },
  10.     "git.autofetch": true,
  11.     "git.suggestSmartCommit": false,
  12.     "git.commandsToLog": [
  13.         "push"
  14.     ],
  15.     "redhat.telemetry.enabled": true,
  16.     "editor.fontLigatures": true,
  17.     "editor.accessibilitySupport": "off",
  18.     "security.workspace.trust.untrustedFiles": "open",
  19.     "files.autoSave": "onFocusChange",
  20.     "git.confirmSync": false,
  21.     "cmakeFormat.exePath": "/usr/bin/cmake-format",
  22.     "git.openRepositoryInParentFolders": "always",
  23.     "[python]": {
  24.         "editor.formatOnType": true
  25.     },
  26.     "[latex]": {
  27.         "editor.defaultFormatter": "James-Yu.latex-workshop"
  28.     },
  29.     "latex-workshop.latex.tools": [
  30.         {
  31.             "name": "latexmk",
  32.             "command": "latexmk",
  33.             "args": [
  34.                 "-shell-escape",
  35.                 "-synctex=1",
  36.                 "-interaction=nonstopmode",
  37.                 "-file-line-error",
  38.                 "-pdf",
  39.                 "-outdir=%OUTDIR%",
  40.                 "%DOC%"
  41.             ],
  42.             "env": {}
  43.         },
  44.         {
  45.             "name": "lualatexmk",
  46.             "command": "latexmk",
  47.             "args": [
  48.                 "-synctex=1",
  49.                 "-interaction=nonstopmode",
  50.                 "-file-line-error",
  51.                 "-lualatex",
  52.                 "-outdir=%OUTDIR%",
  53.                 "%DOC%"
  54.             ],
  55.             "env": {}
  56.         },
  57.         {
  58.             "name": "xelatexmk",
  59.             "command": "latexmk",
  60.             "args": [
  61.                 "-synctex=1",
  62.                 "-interaction=nonstopmode",
  63.                 "-file-line-error",
  64.                 "-xelatex",
  65.                 "-outdir=%OUTDIR%",
  66.                 "%DOC%"
  67.             ],
  68.             "env": {}
  69.         },
  70.         {
  71.             "name": "latexmk_rconly",
  72.             "command": "latexmk",
  73.             "args": [
  74.                 "%DOC%"
  75.             ],
  76.             "env": {}
  77.         },
  78.         {
  79.             "name": "pdflatex",
  80.             "command": "pdflatex",
  81.             "args": [
  82.                 "-shell-escape",
  83.                 "-synctex=1",
  84.                 "-interaction=nonstopmode",
  85.                 "-file-line-error",
  86.                 "%DOC%"
  87.             ],
  88.             "env": {}
  89.         },
  90.         {
  91.             "name": "bibtex",
  92.             "command": "bibtex",
  93.             "args": [
  94.                 "%DOCFILE%"
  95.             ],
  96.             "env": {}
  97.         },
  98.         {
  99.             "name": "rnw2tex",
  100.             "command": "Rscript",
  101.             "args": [
  102.                 "-e",
  103.                 "knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')"
  104.             ],
  105.             "env": {}
  106.         },
  107.         {
  108.             "name": "jnw2tex",
  109.             "command": "julia",
  110.             "args": [
  111.                 "-e",
  112.                 "using Weave; weave(\"%DOC_EXT%\", doctype=\"tex\")"
  113.             ],
  114.             "env": {}
  115.         },
  116.         {
  117.             "name": "jnw2texminted",
  118.             "command": "julia",
  119.             "args": [
  120.                 "-e",
  121.                 "using Weave; weave(\"%DOC_EXT%\", doctype=\"texminted\")"
  122.             ],
  123.             "env": {}
  124.         },
  125.         {
  126.             "name": "pnw2tex",
  127.             "command": "pweave",
  128.             "args": [
  129.                 "-f",
  130.                 "tex",
  131.                 "%DOC_EXT%"
  132.             ],
  133.             "env": {}
  134.         },
  135.         {
  136.             "name": "pnw2texminted",
  137.             "command": "pweave",
  138.             "args": [
  139.                 "-f",
  140.                 "texminted",
  141.                 "%DOC_EXT%"
  142.             ],
  143.             "env": {}
  144.         },
  145.         {
  146.             "name": "tectonic",
  147.             "command": "tectonic",
  148.             "args": [
  149.                 "--synctex",
  150.                 "--keep-logs",
  151.                 "%DOC%.tex"
  152.             ],
  153.             "env": {}
  154.         }
  155.     ],
  156.     "editor.renderWhitespace": "all",
  157.     "terminal.integrated.enableMultiLinePasteWarning": false,
  158.     "terminal.integrated.fontFamily": "monospace",
  159.     "editor.inlineSuggest.enabled": true,
  160.     "github.copilot.enable": {
  161.         "*": true,
  162.         "plaintext": false,
  163.         "markdown": false,
  164.         "scminput": false,
  165.         "cpp": true
  166.     },
  167.     "gitlab.showPipelineUpdateNotifications": true,
  168.     "resmon.show.cputemp": true,
  169.     "resmon.disk.drives": null,
  170.     "sonarlint.rules": {
  171.    
  172.         "cpp:S1709": {
  173.             "level": "off"
  174.         }
  175.     },
  176.     "workbench.iconTheme": "vs-minimal",
  177.     "sonarlint.analyzerProperties": {},
  178.     "git.ignoreRebaseWarning": true,
  179.     "terminal.integrated.sendKeybindingsToShell": true,
  180.     "terminal.integrated.defaultProfile.linux": "/usr/bin/zsh",
  181.     "terminal.integrated.defaultProfile.osx": "/usr/bin/zsh",
  182.     "terminal.integrated.fontFamily": "MesloLGM NF",
  183.     "sonarlint.focusOnNewCode": false,
  184.     "cmake.options.statusBarVisibility": "visible",
  185.     "cmake.showOptionsMovedNotification": false,
  186.     "sonarlint.connectedMode.connections.sonarcloud": [
  187.         {
  188.             "organizationKey": "correaa",
  189.             "connectionId": "correaa-boost-multi"
  190.         }
  191.     ],
  192.     "remote.SSH.remotePlatform": {
  193.         "quartz.llnl.gov": "linux"
  194.     },
  195.     "cmake.showConfigureWithDebuggerNotification": false,
  196.     "githubPullRequests.terminalLinksHandler": "github",
  197.     "cmake.pinnedCommands": [
  198.         "workbench.action.tasks.configureTaskRunner",
  199.         "workbench.action.tasks.runTask"
  200.     ],
  201.     "editor.minimap.enabled": false,
  202.     "editor.inlineSuggest.suppressSuggestions": true,
  203.     "gitlab.duoCodeSuggestions.enabled": true,
  204.     "diffEditor.ignoreTrimWhitespace": false,
  205.     "terminal.integrated.env.linux": {
  206.         "GTK_PATH": null
  207.     },
  208.     "cody.commandCodeLenses": true,
  209.     "C_Cpp.intelliSenseEngine": "disabled",
  210.     "C_Cpp.dimInactiveRegions": false,
  211.     "githubPullRequests.pullBranch": "never",
  212.     "terminal-tools.options": {
  213.  
  214.         "directives": "default",
  215.         "dependencies": "default",
  216.         "devDependencies": "default",
  217.         "globalDependencies": "default",
  218.         "tools": "default",
  219.         "sudo": false,
  220.         "install": "npm",
  221.         "installOptions": []
  222.     },
  223.     "clangd.path": "/home/correaa/.config/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/19.1.2/clangd_19.1.2/bin/clangd",
  224. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement