Advertisement
Tkap1

Untitled

Jan 6th, 2024
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. {
  2. "security.workspace.trust.enabled": false,
  3. "workbench.startupEditor": "none",
  4. "editor.insertSpaces": false,
  5. "editor.inlineSuggest.enabled": false,
  6. "editor.suggestOnTriggerCharacters": false,
  7. "editor.quickSuggestions": {
  8. "other": "off"
  9. },
  10. "editor.dropIntoEditor.enabled": false,
  11. "editor.lightbulb.enabled": false,
  12. "editor.minimap.enabled": false,
  13. "editor.parameterHints.enabled": false,
  14. "editor.cursorBlinking": "phase",
  15. "editor.cursorSurroundingLines": 20,
  16. "editor.cursorSmoothCaretAnimation": "on",
  17. "files.trimTrailingWhitespace": true,
  18. "extensions.ignoreRecommendations": true,
  19. "telemetry.telemetryLevel": "off",
  20. "notebook.breadcrumbs.showCodeCells": false,
  21. "editor.smoothScrolling": true,
  22. "editor.autoClosingQuotes": "never",
  23. "zenMode.hideLineNumbers": false,
  24. "editor.cursorStyle": "block",
  25. "editor.autoClosingBrackets": "never",
  26. "terminal.integrated.defaultProfile.windows": "Command Prompt",
  27. "editor.find.seedSearchStringFromSelection": "never",
  28. "terminal.integrated.cursorBlinking": true,
  29. "problems.decorations.enabled": false,
  30. "editor.tabCompletion": "on",
  31. "editor.scrollbar.vertical": "visible",
  32. "editor.scrollbar.horizontal": "hidden",
  33. "editor.folding": false,
  34. "editor.dragAndDrop": false,
  35. "markJump.additionalSectionPatterns": [
  36. "\\/\\/(?<heading>[\\sv]+)(?<description>.*?)\\svvv+",
  37. "\\/\\/(?<heading>[\\s\\^]+)(?<description>.*?)\\s\\^\\^\\^+"
  38. ],
  39. "files.associations": {
  40. "*.vertex": "glsl",
  41. "*.fragment": "glsl",
  42. "*.c": "cpp",
  43. "*.f": "filter",
  44. "*.ahk": "ahk",
  45. "*.pp": "pascal",
  46. "*.compute": "glsl"
  47. },
  48. "editor.autoSurround": "never",
  49. "markJump.additionalTestPatterns": [
  50. "//\\s*(\\>+)?\\s*[Mm][Aa][Rr][Kk]"
  51. ],
  52. "explorer.excludeGitIgnore": true,
  53. "search.useIgnoreFiles": false,
  54. "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${profileName}${separator}${appName}",
  55.  
  56. "files.exclude": {
  57. "enc_temp_folder/*": true,
  58. },
  59.  
  60. // "editor.rulers": [
  61. // {
  62. // "column": 160,
  63. // "color": "#aaaaaa55"
  64. // },
  65. // ],
  66. "editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?_",
  67. "zenMode.centerLayout": false,
  68. "editor.autoIndent": "brackets",
  69. "window.menuBarVisibility": "compact",
  70. "window.commandCenter": false,
  71. "workbench.layoutControl.enabled": false,
  72. "breadcrumbs.enabled": false,
  73. "workbench.colorTheme": "One Dark Pro",
  74. "window.zoomLevel": 2,
  75. "editor.tabSize": 2
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement