Advertisement
Guest User

Untitled

a guest
Mar 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. // Поместите параметры в этот файл, чтобы перезаписать параметры по умолчанию.
  2. {
  3. // editor
  4. "editor.fontFamily": "'Roboto mono', Consolas, 'Courier New', monospace",
  5. "editor.fontSize": 17,
  6. "editor.minimap.enabled": true,
  7. "editor.cursorBlinking": "blink",
  8. "editor.renderWhitespace": "boundary",
  9. "editor.renderIndentGuides": true,
  10. "editor.wordWrap": "on",
  11. "workbench.iconTheme": "file-icons",
  12.  
  13. // window
  14. "window.newWindowDimensions": "maximized",
  15.  
  16. // telemetry
  17. "telemetry.enableTelemetry": false,
  18.  
  19. // vim
  20. "vim.easymotion": true,
  21. "vim.otherModesKeyBindingsNonRecursive": [
  22. {
  23. "before": [":"],
  24. "after": [],
  25. "commands": [
  26. {
  27. "command": "workbench.action.showCommands",
  28. "args": []
  29. }
  30. ]
  31. }
  32. ],
  33. "vim.insertModeKeyBindings": [
  34. {
  35. "before": ["j","j"],
  36. "after": ["<Esc>"]
  37. }
  38. ],
  39. "vim.useCtrlKeys": false,
  40. "vim.leader": ";",
  41. "vim.smartcase": true,
  42.  
  43.  
  44. "workbench.colorTheme": "Material Theme",
  45. "window.menuBarVisibility": "toggle",
  46. "workbench.sideBar.location": "left",
  47. "workbench.statusBar.visible": true,
  48. "git.confirmSync": false
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement