Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. {
  2. "terminal.integrated.shell.osx": "zsh",
  3. "workbench.activityBar.visible": true,
  4. "editor.minimap.enabled": true,
  5. "explorer.confirmDragAndDrop": false,
  6. "files.autoSave": "off",
  7. "workbench.statusBar.visible": true,
  8. "workbench.sideBar.location": "left",
  9.  
  10. "editor.fontFamily": "FiraCode-Retina, monospace",
  11. "terminal.integrated.fontFamily": "FiraCode-Retina",
  12. "terminal.integrated.fontWeightBold": "500",
  13. "editor.fontLigatures": true,
  14. "explorer.autoReveal": false,
  15. "editor.renderControlCharacters": true,
  16. "editor.renderWhitespace": "none",
  17. "editor.tabSize": 2,
  18. // "prettier.tabWidth": 2,
  19. // "prettier.printWidth": 99999,
  20. "editor.renderIndentGuides": true,
  21. "editor.cursorWidth": 3,
  22. "workbench.statusBar.feedback.visible": false,
  23. "emmet.includeLanguages": {
  24. "vue-html": "html",
  25. "plaintext": "jade"
  26. },
  27. "files.associations": {
  28. "*.css": "scss"
  29. },
  30. "editor.cursorBlinking": "solid",
  31.  
  32. "todohighlight.keywords": [
  33. "DEBUG:",
  34. "REVIEW:",
  35. {
  36. "text": "NOTE",
  37. "color": "#ffffff",
  38. "isWholeLine": false,
  39. "backgroundColor": "#1b80cc"
  40. },
  41. {
  42. "text": "TODO:",
  43. "color": "#ffffff",
  44. "isWholeLine": false,
  45. "backgroundColor": "orange"
  46. },
  47. {
  48. "text": "FIXME:",
  49. "color": "#ffffff",
  50. "isWholeLine": false,
  51. "backgroundColor": "#bb4951"
  52. }
  53. ],
  54.  
  55. "workbench.colorCustomizations": {
  56. "editorIndentGuide.activeBackground": "#636d83",
  57. "editorCursor.foreground": "#e06c75"
  58. // Dark theme
  59. // "editor.selectionBackground": "#414754",
  60. // "editor.selectionHighlightBackground": "#414754",
  61. // "editor.lineHighlightBackground": "#303540"
  62. },
  63. "highlight-matching-tag.styles": {
  64. "opening": {
  65. "name": {
  66. "underline": "#e06c75"
  67. }
  68. },
  69. "closing": {
  70. "name": {
  71. "underline": "#e06c75"
  72. }
  73. }
  74. },
  75. "window.restoreWindows": "all",
  76. "vscode_custom_css.imports": [
  77. "file://../Users/robertpiosik/.vscode/vscode-custom-css.css"
  78. ],
  79. "editor.occurrencesHighlight": false,
  80. "diffEditor.ignoreTrimWhitespace": false,
  81. "liveServer.settings.donotShowInfoMsg": true,
  82. "[javascript]": {},
  83. "workbench.iconTheme": "simple-icons",
  84. "workbench.startupEditor": "newUntitledFile",
  85. "git.enableSmartCommit": true,
  86. "git.autofetch": true,
  87. "workbench.editor.openPositioning": "last",
  88. "git.confirmSync": false,
  89. "window.zoomLevel": 0,
  90. "terminal.integrated.fontSize": 13,
  91. "breadcrumbs.enabled": true,
  92. "gitlens.codeLens.recentChange.enabled": false,
  93. "gitlens.codeLens.authors.enabled": false,
  94. "gitlens.currentLine.enabled": false,
  95. "javascript.updateImportsOnFileMove.enabled": "always",
  96. "editor.formatOnSave": true,
  97. "editor.fontSize": 14.5,
  98. "editor.parameterHints.enabled": false,
  99. "workbench.tips.enabled": false,
  100. "editor.hover.enabled": false,
  101. "prettier.useTabs": true,
  102. "editor.detectIndentation": false,
  103. "editor.insertSpaces": false,
  104. "php.suggest.basic": false,
  105. "editor.minimap.maxColumn": 70,
  106. "editor.minimap.showSlider": "always",
  107. "editor.minimap.side": "left",
  108. "emeraldwalk.runonsave": {
  109. "commands": [
  110. {
  111. "match": "\\.php$",
  112. "cmd": "prettier ${file} --requirePragma true --tab-width 2 --print-width 9999 --write"
  113. }
  114. ]
  115. },
  116. "vim.easymotion": true,
  117. "vim.sneak": true,
  118. "vim.incsearch": true,
  119. "vim.useSystemClipboard": true,
  120. "vim.useCtrlKeys": true,
  121. "vim.hlsearch": true,
  122. "vim.insertModeKeyBindings": [
  123. {
  124. "before": ["j", "j"],
  125. "after": ["<Esc>"]
  126. }
  127. ],
  128. "vim.normalModeKeyBindingsNonRecursive": [
  129. {
  130. "before": [" "],
  131. "after": ["leader", "leader", "leader", "b", "d", "w"]
  132. }
  133. ],
  134. "vim.easymotionMarkerFontFamily": "FiraCode-Retina",
  135. "vim.leader": "<space>",
  136. "vim.handleKeys": {
  137. "<C-a>": false,
  138. "<C-f>": false
  139. }
  140. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement