Guest User

Untitled

a guest
Jul 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. {
  2. // Controls the font size in pixels.
  3. "editor.fontSize": 17,
  4.  
  5. // Controls the font family.
  6. "editor.fontFamily": "Go Mono, Menlo, Monaco, 'Courier New', monospace",
  7.  
  8. // The number of spaces a tab is equal to. This setting is overridden based on the file contents when `editor.detectIndentation` is on.
  9. "editor.tabSize": 8,
  10.  
  11. // Controls whether the editor should render indent guides
  12. "editor.renderIndentGuides": false,
  13.  
  14. // Controls if opened editors from Quick Open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
  15. "workbench.editor.enablePreviewFromQuickOpen": false,
  16.  
  17. // Controls if opened editors show as preview. Preview editors are reused until they are kept (e.g. via double click or editing) and show up with an italic font style.
  18. "workbench.editor.enablePreview": false,
  19.  
  20. // Controls the font size in pixels of the terminal.
  21. "terminal.integrated.fontSize": 17,
  22.  
  23. // Controls whether the editor should highlight similar matches to the selection
  24. "editor.selectionHighlight": false,
  25.  
  26. // Controls how the editor should render the current line highlight, possibilities are 'none', 'gutter', 'line', and 'all'.
  27. "editor.renderLineHighlight": "none",
  28.  
  29. // Controls how to open items in trees and lists using the mouse (if supported). Set to `singleClick` to open items with a single mouse click and `doubleClick` to only open via mouse double click. For parents with children in trees, this setting will control if a single click expands the parent or a double click. Note that some trees and lists might choose to ignore this setting if it is not applicable.
  30. "workbench.list.openMode": "doubleClick",
  31.  
  32. // Controls if the minimap is shown
  33. "editor.minimap.enabled": false,
  34.  
  35. // Controls the visibility of the activity bar in the workbench.
  36. "workbench.activityBar.visible": false,
  37.  
  38. // Overrides colors from the currently selected color theme.
  39. "workbench.colorCustomizations": {
  40. "statusBar.background" : "#1A1A1A",
  41. },
  42.  
  43. // Controls if the hover is shown
  44. "editor.hover.enabled": false,
  45.  
  46. // Show fullpath or relative path in status bar.
  47. "ActiveFileInStatusBar.fullpath": false,
  48.  
  49. // Flags to pass to Lint tool (e.g. ["-min_confidence=.8"])
  50. "go.lintFlags": ["--disable-all"],
  51.  
  52. // Specifies Lint tool name.
  53. "go.lintTool": "gometalinter",
  54. }
Add Comment
Please, Sign In to add comment