Advertisement
myapit

vscode-setting

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