Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. {
  2. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  3. "editor.formatOnSave": true,
  4. "editor.minimap.enabled": false, // removes minimap
  5. "editor.renderWhitespace": "none", // removes whitespace chars
  6. "editor.renderIndentGuides": false, // removes indent guides
  7. "editor.renderLineHighlight": "none", // removes line highlight
  8. "editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar)
  9. "editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
  10. "editor.folding": false, // removes the folding feature
  11. "editor.occurrencesHighlight": false, // removes highlights occurrences (still works when you select a word)
  12. "editor.matchBrackets": false, // removes the highlight of matching brackets (I use Subtle Match Brackets extension for this)
  13. "editor.glyphMargin": false, // removes the space used mainly for debugging indicators
  14. "explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
  15. "workbench.activityBar.visible": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette
  16. "workbench.editor.showIcons": false, // removes icon from opened files in tabs
  17. "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
  18. "workbench.statusBar.visible": false, // removes the status bar
  19. "indenticator.color.dark": "rgba(255,255,255,.1)", // adds a subtle indent guide (needs Indenticator extension)
  20. "workbench.colorCustomizations": {
  21. "titleBar.activeForeground": "#0000",
  22. // object that allows you to customize your color theme: https://code.visualstudio.com/docs/getstarted/theme-color-reference
  23. "tab.activeBorder": "#0000",
  24. "tab.activeBorderTop": "#0000" // removes border to highlight active tabs (the colors formats are: #RGB, #RGBA, #RRGGBB or #RRGGBBAA)
  25. },
  26. "editor.fontFamily": "Operator Mono",
  27. "editor.lineHeight": 30,
  28. "editor.fontLigatures": true,
  29. "explorer.decorations.badges": true,
  30. "explorer.decorations.colors": false,
  31. "window.titleBarStyle": "custom",
  32. "window.menuBarVisibility": "toggle",
  33. "window.zoomLevel": -1,
  34. "[html]": {
  35. "editor.defaultFormatter": "esbenp.prettier-vscode"
  36. },
  37. "workbench.colorTheme": "ƒ - Slime",
  38. "extensions.ignoreRecommendations": true
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement