Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. {
  2. "editor.formatOnType": true,
  3. "workbench.startupEditor": "newUntitledFile",
  4. "workbench.useExperimentalGridLayout": true,
  5. "editor.formatOnSave": false,
  6. "eslint.autoFixOnSave": true,
  7. "[javascript]": {
  8. "editor.defaultFormatter": "HookyQR.beautify"
  9. },
  10. "window.zoomLevel": 0,
  11. "files.associations": {
  12. "*.js": "javascriptreact"
  13. },
  14. "[jsonc]": {
  15. "editor.defaultFormatter": "vscode.json-language-features"
  16. },
  17. "window.menuBarVisibility": "toggle",
  18. "workbench.statusBar.visible": true,
  19. "workbench.activityBar.visible": false,
  20. "editor.minimap.enabled": false,
  21. "editor.overviewRulerLanes": 3,
  22. "breadcrumbs.enabled": false,
  23. "workbench.editor.showTabs": true,
  24. "workbench.sideBar.location": "right",
  25. "[javascriptreact]": {
  26. "editor.defaultFormatter": "esbenp.prettier-vscode"
  27. },
  28. "editor.wordWrapColumn": 100,
  29. "editor.wordWrap": "wordWrapColumn",
  30. "editor.quickSuggestions": false,
  31. "editor.wordBasedSuggestions": false,
  32. "javascript.validate.enable": false,
  33. "editor.formatOnPaste": true,
  34. "editor.lineNumbers": "relative",
  35. // Layout
  36. "editor.scrollbar.horizontal": "hidden",
  37. "editor.scrollbar.vertical": "hidden",
  38. "editor.scrollbar.verticalScrollbarSize": 0,
  39. "scm.diffDecorations": "none",
  40. "editor.cursorBlinking": "smooth",
  41. "editor.fontLigatures": true,
  42. "editor.fontFamily": "Fira Code Retina",
  43. "workbench.colorTheme": "Dracula Soft",
  44. "editor.renderLineHighlight": "none",
  45. "editor.cursorSmoothCaretAnimation": true,
  46. // /Layout
  47. "javascript.updateImportsOnFileMove.enabled": "always",
  48. "editor.mouseWheelZoom": true,
  49. "editor.autoClosingQuotes": "never",
  50. "editor.autoClosingBrackets": "never",
  51. "editor.renderWhitespace": "none",
  52. "editor.renderIndentGuides": false,
  53. "todohighlight.keywords": [
  54. {
  55. "text": "REFACTOR:",
  56. "backgroundColor": "lightblue",
  57. "color": "#252525",
  58. "overviewRulerColor": "grey"
  59. }
  60. ],
  61. "editor.showUnused": false,
  62. "workbench.editor.tabCloseButton": "right",
  63. "telemetry.enableTelemetry": false,
  64. "telemetry.enableCrashReporter": false,
  65. "vim.disableExtension": false,
  66. "vim.easymotion": true,
  67. "vim.useSystemClipboard": true,
  68. "vim.useCtrlKeys": false,
  69. "vim.leader": "<space>",
  70. "vim.incsearch": true,
  71. "vim.easymotionMarkerBackgroundColor": "#fbc2ff",
  72. "vim.easymotionMarkerForegroundColorOneChar": "#252525",
  73. "vim.easymotionMarkerForegroundColorTwoChar": "#252525",
  74. "vim.easymotionMarkerYOffset": 2,
  75. "vim.easymotionMarkerHeight": 17,
  76. "vim.easymotionMarkerWidthPerChar": 12,
  77. "vim.easymotionMarkerFontFamily": "Fira Code",
  78. "editor.tabSize": 2,
  79. "city-lights-icons-vsc.hidesExplorerArrows": true
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement