Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. {
  2. "editor.fontFamily": "Fira Code",
  3. "editor.fontLigatures": true,
  4. "editor.fontSize": 15,
  5. "terminal.external.linuxExec": "alacritty",
  6. "terminal.integrated.copyOnSelection": true,
  7. "terminal.integrated.cursorBlinking": true,
  8. "terminal.integrated.cursorStyle": "line",
  9. "terminal.integrated.fontSize": 15,
  10. "workbench.colorTheme": "One Dark Pro",
  11. "workbench.sideBar.location": "right",
  12. "window.menuBarVisibility": "toggle",
  13. "workbench.startupEditor": "newUntitledFile",
  14. "workbench.iconTheme": null,
  15. "explorer.confirmDelete": false,
  16. "editor.formatOnSave": true,
  17. "editor.minimap.renderCharacters": false,
  18. "[html]": {
  19. "editor.defaultFormatter": "HookyQR.beautify"
  20. },
  21. "[javascript]": {
  22. "editor.defaultFormatter": "HookyQR.beautify"
  23. },
  24. "explorer.confirmDragAndDrop": false,
  25. "go.useLanguageServer": false,
  26. "go.autocompleteUnimportedPackages": true,
  27. "go.coverOnSave": true,
  28. "go.coverOnSingleTest": true,
  29. "go.formatTool": "goreturns",
  30. "go.formatFlags": [
  31. "-i"
  32. ],
  33. "go.lintTool": "golangci-lint",
  34. "medius.runonsave": {
  35. "commands": [
  36. {
  37. "match": ".*\\.go",
  38. "cmd": "parsefix -inplace -f=${file}"
  39. }
  40. ]
  41. },
  42. "vim.easymotionKeys": "hklyuiopnm,qwertzxcvbasdgjf",
  43. // "vim.easymotionMarkerBackgroundColor": "rgba(0,0,0,0)",
  44. "vim.easymotionMarkerHeight": 20,
  45. "vim.easymotionMarkerWidthPerChar": 12,
  46. "vim.foldfix": true,
  47. "vim.useSystemClipboard": true,
  48. "vim.easymotion": true,
  49. "vim.hlsearch": true,
  50. "vim.insertModeKeyBindings": [
  51. {
  52. "before": [
  53. "j",
  54. "j"
  55. ],
  56. "after": [
  57. "<Esc>"
  58. ]
  59. }
  60. ],
  61. "vim.leader": "<space>",
  62. "vim.handleKeys": {
  63. "<C-a>": false,
  64. "<C-f>": false
  65. },
  66. "vim.easymotionMarkerFontFamily": "Hack",
  67. "vim.easymotionMarkerFontSize": "20",
  68. "vim.surround": true,
  69. "vim.sneak": true,
  70. "vim.useCtrlKeys": false,
  71. "editor.lineNumbers": "relative",
  72. "vim.enableNeovim": true,
  73. "vim.neovimPath": "/usr/bin/nvim",
  74. "workbench.colorCustomizations": {
  75. "editorCursor.foreground": "#5294e2",
  76. "terminalCursor.foreground": "#5294e2"
  77. },
  78. "editor.cursorSurroundingLines": 10,
  79. "editor.cursorSmoothCaretAnimation": true,
  80. "editor.smoothScrolling": true,
  81. "sync.gist": "3d2b75117b0cac5446a1add76d27f494",
  82. "vim.normalModeKeyBindingsNonRecursive": [
  83. {
  84. "before": [
  85. " "
  86. ],
  87. "after": [
  88. "leader",
  89. "leader",
  90. "s"
  91. ]
  92. }
  93. ],
  94. "todo-tree.highlights.customHighlight": {
  95. "TODO": {
  96. "foreground": "#faff63",
  97. "iconColour": "#faff63",
  98. "icon": "pencil",
  99. "type": "line"
  100. },
  101. "FIXME": {
  102. "foreground": "#ff5d3d",
  103. "iconColour": "#ff5d3d",
  104. "icon": "flame",
  105. "type": "line"
  106. }
  107. }
  108. // "vim.normalModeKeyBindingsNonRecursive": [
  109. // {
  110. // "before": [
  111. // " "
  112. // ],
  113. // "after": [
  114. // "leader",
  115. // "leader",
  116. // "leader",
  117. // "b",
  118. // "d",
  119. // "w"
  120. // ]
  121. // }
  122. // ],
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement