Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2. {
  3. "javascript.format.enable": false,
  4. "window.menuBarVisibility": "toggle",
  5. "search.exclude": {
  6. "**/node_modules": true,
  7. "**/.git": true,
  8. "**/bin": true
  9. },
  10. "workbench.statusBar.visible": true,
  11. "workbench.activityBar.visible": true,
  12. "vim.easymotion": true,
  13. "vim.incsearch": true,
  14. "vim.useSystemClipboard": true,
  15. "vim.useCtrlKeys": true,
  16. "vim.insertModeKeyBindings": [
  17. {
  18. "before": [
  19. "j",
  20. "k"
  21. ],
  22. "after": [
  23. "<Esc>"
  24. ]
  25. },
  26. {
  27. "before": [
  28. "k",
  29. "j"
  30. ],
  31. "after": [
  32. "<Esc>"
  33. ]
  34. }
  35. ],
  36. "vim.leader": "<space>",
  37. "vim.handleKeys": {
  38. "<C-a>": false,
  39. "<C-f>": false
  40. },
  41. "vim.otherModesKeyBindingsNonRecursive": [
  42. {
  43. "before": [
  44. "<C-u>"
  45. ],
  46. "after": [
  47. "2",
  48. "0",
  49. "k"
  50. ]
  51. },
  52. {
  53. "before": [
  54. "<C-d>"
  55. ],
  56. "after": [
  57. "2",
  58. "0",
  59. "j"
  60. ]
  61. }
  62. ],
  63. // Font
  64. "editor.fontFamily": "Fira Code Medium",
  65. "editor.fontLigatures": true,
  66. "editor.fontSize": 13,
  67. // editor
  68. "editor.lineNumbers": "relative",
  69. "editor.renderWhitespace": "none",
  70. "editor.renderIndentGuides": true,
  71. "editor.tabSize": 2,
  72. "editor.formatOnSave": true,
  73. "editor.rulers": [
  74. 80,
  75. 100
  76. ],
  77. "prettier.singleQuote": true,
  78. "prettier.semi": true,
  79. //flow
  80. "flow.runOnEdit": false,
  81. "auto-close-tag.SublimeText3Mode": true,
  82. "workbench.colorTheme": "Ayu Dark",
  83. "workbench.colorCustomizations": {
  84. // "statusBar.background": "#212121",
  85. // "editor.background": "#111111",
  86. // "tab.inactiveBackground": "#202020",
  87. // "sideBar.background": "#161616",
  88. // "activityBar.background": "#1C1C1C",
  89. "editorLineNumber.foreground": "#00BCD4",
  90. "sideBar.foreground": "#fff"
  91. },
  92. "vim.disableAnnoyingNeovimMessage": true,
  93. "editor.snippetSuggestions": "top"
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement