Username77177

My configuration for VSCode (Linux)

Mar 10th, 2020
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.31 KB | None | 0 0
  1. // settings.json
  2. {
  3.     "workbench.iconTheme": "vscode-icons",
  4.     "workbench.colorTheme": "Gruvbox Dark Soft",
  5.     "latex-workshop.view.pdf.viewer": "tab",
  6.     "atomKeymap.promptV3Features": true,
  7.     "editor.multiCursorModifier": "ctrlCmd",
  8.     "editor.formatOnPaste": true,
  9.     "zenMode.centerLayout": false,
  10.     "zenMode.fullScreen": true,
  11.     "zenMode.hideLineNumbers": true,
  12.     "window.restoreFullscreen": true,
  13.     "editor.fontFamily": "'JetBrains Mono','Fira Code',monospace",
  14.     "editor.fontLigatures": true,
  15.     "debug.inlineValues": true,
  16.     "debug.console.fontSize": 15,
  17.     "editor.fontSize": 16,
  18.     "C_Cpp.autocomplete": "Default",
  19.     "editor.cursorStyle": "block-outline",
  20.     "editor.minimap.renderCharacters": false,
  21.     "editor.suggestSelection": "first",
  22.     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  23.     "window.zoomLevel": 0,
  24.     "liveServer.settings.NoBrowser": true,
  25.     "window.menuBarVisibility": "toggle",
  26.     "explorer.confirmDelete": false,
  27.    
  28. }
  29.  
  30. // launch.json
  31. {
  32.     // Use IntelliSense to learn about possible attributes.
  33.     // Hover to view descriptions of existing attributes.
  34.     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  35.     "version": "0.2.0",
  36.     "configurations": [
  37.         {
  38.             "name": "(gdb) Debug Your File",
  39.             "type": "cppdbg",
  40.             "request": "launch",
  41.             "program": "${workspaceFolder}/a.out",
  42.             "args": [],
  43.             "stopAtEntry": false,
  44.             "cwd": "${workspaceFolder}",
  45.             "environment": [],
  46.             "externalConsole": false,
  47.             "MIMode": "gdb",
  48.             "setupCommands": [
  49.                 {
  50.                     "description": "Enable pretty-printing for gdb",
  51.                     "text": "-enable-pretty-printing",
  52.                     "ignoreFailures": true
  53.                 }
  54.                
  55.             ],
  56.             "preLaunchTask": "CompileCPP",
  57.         }
  58.     ]
  59. }
  60.  
  61. // tasks.json
  62. {
  63.     // See https://go.microsoft.com/fwlink/?LinkId=733558
  64.     // for the documentation about the tasks.json format
  65.     "version": "2.0.0",
  66.     "tasks": [
  67.         {
  68.             "label": "CompileCPP",
  69.             "type": "shell",
  70.             "command": "g++ -g ${fileBasename}",
  71.         }
  72.     ]
  73. }
Advertisement
Add Comment
Please, Sign In to add comment