Advertisement
myapit

VSCODE JSON SETTING

Oct 14th, 2020
2,461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.06 KB | None | 0 0
  1. {
  2.     //"window.zoomLevel": 0,
  3.     "window.zoomLevel": -0.3,
  4.     "sshextension.allowMultipleConnections": true,
  5.     "workbench.colorCustomizations": {},
  6.     "editor.fontFamily": "monospace", //"'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace",
  7.     "editor.fontSize": 14,
  8.     "php.validate.enable": true,
  9.     "php.validate.executablePath": "D:/binary/php-7.3.6/php.exe",
  10.     "php.validate.run": "onSave",
  11.     "debug.console.fontSize": 11,
  12.     "terminal.integrated.fontSize": 13,
  13.     "editor.suggestFontSize": 10,
  14.     "markdown.preview.fontSize": 11,
  15.     "sftp.downloadWhenOpenInRemoteExplorer": true,
  16.     "editor.tabSize": 2,
  17.     "editor.suggestSelection": "first",
  18.     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  19.     "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
  20.     "workbench.startupEditor": "newUntitledFile",
  21.     "workbench.colorTheme": "Visual Studio 2019 Dark",
  22.    // "workbench.iconTheme": "file-icons",
  23.     "editor.fontLigatures": true,
  24.     "C_Cpp.updateChannel": "Insiders",
  25.     "vsicons.dontShowNewVersionMessage": true,
  26.    // "workbench.activityBar.visible": false,
  27.  
  28.    
  29.     "workbench.editor.highlightModifiedTabs": true,
  30.     //"explorer.sortOrder": "type",
  31.     "workbench.iconTheme": "vs-minimal",
  32.     "telemetry.enableTelemetry": false,
  33.     "editor.formatOnPaste": true,
  34.    // "editor.cursorStyle": "block",
  35.   //  "editor.cursorBlinking": "smooth",
  36.     "files.trimFinalNewlines": true,
  37.     "editor.acceptSuggestionOnEnter": "off",
  38.  
  39.     "editor.scrollbar.verticalScrollbarSize": 10,
  40.     "editor.scrollbar.horizontal": "visible",
  41.     "editor.scrollbar.horizontalScrollbarSize": 15,
  42.     "[dart]": {
  43.       "editor.formatOnSave": true,
  44.       "editor.formatOnType": true,
  45.       "editor.rulers": [
  46.         80
  47.       ],
  48.       "editor.selectionHighlight": false,
  49.       "editor.suggest.snippetsPreventQuickSuggestions": false,
  50.       "editor.suggestSelection": "first",
  51.       "editor.tabCompletion": "onlySnippets",
  52.       "editor.wordBasedSuggestions": false
  53.     }
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement