Wrigs

VScode.settings.json

Jun 24th, 2017 (edited)
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.46 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2.  
  3. {
  4.   // Controls the font family.
  5.   "editor.fontFamily": "'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace",
  6.      
  7.   // Controls the font size in pixels.
  8.   "editor.fontSize": 16,
  9.  
  10.   // Controls the line height. Use 0 to compute the lineHeight from the fontSize.
  11.   "editor.lineHeight": 21,
  12.  
  13.   // Controls the letter spacing in pixels.
  14.   "editor.letterSpacing": 0,
  15.  
  16.   // Controls the display of line numbers. Possible values are 'on', 'off', and 'relative'. 'relative' shows the line count from the current cursor position.
  17.   "editor.lineNumbers": "on",  
  18.  
  19.   // Columns at which to show vertical rulers
  20.   "editor.rulers": [80],
  21.  
  22.   // The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
  23.   "editor.tabSize": 4,
  24.  
  25.   // Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
  26.   "editor.insertSpaces": true,
  27.  
  28.   // When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
  29.   "editor.detectIndentation": true,
  30.  
  31.   // Controls if the editor will scroll beyond the last line
  32.   "editor.scrollBeyondLastLine": true,
  33.  
  34.   // Controls if the minimap is shown
  35.   "editor.minimap.enabled": false,
  36.  
  37.   "editor.codeLens": false,
  38.  
  39.   // Enables font ligatures
  40.   "editor.fontLigatures": true,
  41.  
  42.   // Set to false because we are using the Guides extension
  43.   "editor.renderIndentGuides": false,
  44.  
  45.   // Controls if the editor should allow to move selections via drag and drop.
  46.   "editor.dragAndDrop": false,
  47.  
  48.   // Workbench settings
  49.   "workbench.colorTheme": "Blackboard",
  50.   "workbench.iconTheme": "material-icon-theme",
  51.  
  52.   // Arduino settings
  53.   "arduino.path": "C:\\Arduino-1.8.3",
  54.  
  55.   // Path to CLANG compiler
  56.   "clang.executable": "C:\\Program Files\\LLVM\\bin\\",
  57.  
  58.   // The path of the shell that the terminal uses on Windows.
  59.   // When using shells shipped with Windows (cmd, PowerShell or Bash on Ubuntu).
  60.   "terminal.integrated.shell.windows": "C:\\Windows\\system32\\cmd.exe",
  61.  
  62.   // Controls the font size in pixels of the terminal.
  63.   "terminal.integrated.fontSize": 16,
  64.    
  65.   // Controls the line height of the terminal, this number is multipled by the terminal font size to get the actual line-height in pixels.
  66.   "terminal.integrated.lineHeight": 2,
  67.   "workbench.panel.location": "bottom"
  68. }
Add Comment
Please, Sign In to add comment