Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.51 KB | None | 0 0
  1. {
  2.  
  3.  
  4.  
  5. "surround.custom": {
  6. "backQuotes": {
  7. "label": "backQuotes",
  8. "description": "Surround with backticks",
  9. "snippet": "`$TM_SELECTED_TEXT`"
  10. },
  11. "singleQuotes": {
  12. "label": "singleQuotes",
  13. "description": "Surround with single quotes",
  14. "snippet": "'$TM_SELECTED_TEXT'"
  15. },
  16. "doubleQuotes": {
  17. "label": "doubleQuotes",
  18. "description": "Surround with double quotes",
  19. "snippet": "\"$TM_SELECTED_TEXT\"",
  20. },
  21. "squareBrackets": {
  22. "label": "squareBrackets",
  23. "description": "Surround with square brackets",
  24. "snippet": "[$TM_SELECTED_TEXT]",
  25. },
  26. "curlyBrackets": {
  27. "label": "curlyBrackets",
  28. "description": "Surround with curly brackets",
  29. "snippet": "{$TM_SELECTED_TEXT}",
  30. },
  31. "parentheses": {
  32. "label": "parentheses",
  33. "description": "Surround with parentheses",
  34. "snippet": "($TM_SELECTED_TEXT)",
  35. },
  36. "angleBrackets": {
  37. "label": "angleBrackets",
  38. "description": "Surround with angle Brackets",
  39. "snippet": "<$TM_SELECTED_TEXT>",
  40. },
  41. "underscores": {
  42. "label": "underscores",
  43. "description": "Surround with underscores",
  44. "snippet": "_${TM_SELECTED_TEXT}_",
  45. },
  46. "asterisks": {
  47. "label": "asterisks",
  48. "description": "Surround with asterisks",
  49. "snippet": "*$TM_SELECTED_TEXT*",
  50. },
  51. },
  52. "window.closeWhenEmpty": false,
  53. "files.insertFinalNewline": false,
  54. "editor.find.seedSearchStringFromSelection": true,
  55. "editor.fontSize": 14,
  56. "workbench.editor.enablePreview": false,
  57. "editor.scrollBeyondLastLine": false,
  58. "window.title": "${activeEditorFull}${separator}${rootName}",
  59. "editor.tabSize": 4,
  60. "files.trimTrailingWhitespace": true,
  61. "editor.wordWrap": "on",
  62. "editor.formatOnPaste": false,
  63. "editor.multiCursorModifier": "ctrlCmd",
  64. "editor.snippetSuggestions": "top",
  65. "editor.mouseWheelZoom": true,
  66. "editor.autoClosingBrackets": "always",
  67. "editor.autoClosingQuotes": "always",
  68. "files.exclude": {
  69. "**/__pycache__": true,
  70. "**/.eggs": true,
  71. "**/.mypy_cache": true,
  72. "**/.pytest_cache": true,
  73. "**/.tox": true,
  74. "**/*.cache": true,
  75. "**/*.pyc": true,
  76. "**/*.vscode": true,
  77. "**/node_modules": true
  78. },
  79. "python.jediEnabled": true,
  80. "cSpell.userWords": [
  81. "OIDC",
  82. "apisdk",
  83. "atexit",
  84. "deserialize",
  85. "etree",
  86. "healthz",
  87. "keycloak",
  88. "kube",
  89. "kubeconfig",
  90. "kubernetes",
  91. "lifecycle",
  92. "lifecycles",
  93. "microservice",
  94. "microservices",
  95. "namings",
  96. "oauth",
  97. "plantuml",
  98. "pytest",
  99. "rbac",
  100. "readyz",
  101. "routable",
  102. "sqlite",
  103. "tiller",
  104. "vcpus",
  105. "webhook",
  106. "workspaces"
  107. ],
  108. "window.zoomLevel": 0,
  109. "python.linting.pylintEnabled": false,
  110. "python.linting.flake8Enabled": true,
  111. "python.linting.banditEnabled": true,
  112. "python.linting.mypyEnabled": true,
  113. "python.linting.pydocstyleEnabled": false,
  114. "python.analysis.disabled": [ "use-before-def" ],
  115. "vs-kubernetes": {
  116. "vs-kubernetes.minikube-path": "/home/vfrancoise/.vs-kubernetes/tools/minikube/linux-amd64/minikube"
  117. },
  118. "workbench.iconTheme": "vscode-icons",
  119. "workbench.list.openMode": "doubleClick",
  120. "cSpell.language": "en,en-GB",
  121. "sync.gist": "bffedd9be18ffd465a72299072c5c2be",
  122. "editor.suggestSelection": "first",
  123. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  124. "breadcrumbs.enabled": true,
  125. "files.associations": {
  126. "*.yml": "yaml"
  127. },
  128. "cSpell.enabledLanguageIds": [
  129. "asciidoc",
  130. "c",
  131. "cpp",
  132. "csharp",
  133. "css",
  134. "git-commit",
  135. "go",
  136. "handlebars",
  137. "haskell",
  138. "html",
  139. "jade",
  140. "java",
  141. "javascript",
  142. "javascriptreact",
  143. "json",
  144. "jsonc",
  145. "latex",
  146. "less",
  147. "markdown",
  148. "php",
  149. "plaintext",
  150. "pug",
  151. "python",
  152. "reStructuredText",
  153. "rust",
  154. "scala",
  155. "scss",
  156. "text",
  157. "typescript",
  158. "typescriptreact",
  159. "yaml",
  160. "yml"
  161. ],
  162. "sync.autoUpload": true
  163. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement