Advertisement
Guest User

user settings

a guest
Dec 17th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. {
  2. // The number of spaces a tab is equal to. This setting is overriden
  3. // based on the file contents when `editor.detectIndentation` is true.
  4. "editor.tabSize": 4,
  5.  
  6. // Insert spaces when pressing Tab. This setting is overriden
  7. // based on the file contents when `editor.detectIndentation` is true.
  8. "editor.insertSpaces": true,
  9.  
  10. // When opening a file, `editor.tabSize` and `editor.insertSpaces`
  11. // will be detected based on the file contents. Set to false to keep
  12. // the values you've explicitly set, above.
  13. "editor.detectIndentation": false,
  14.  
  15. "editor.renderWhitespace": "all",
  16. "workbench.sideBar.location": "left",
  17. "editor.renderControlCharacters": true,
  18. "editor.minimap.enabled": false,
  19. "breadcrumbs.enabled": false,
  20. "workbench.statusBar.feedback.visible": false,
  21. "gitlens.defaultDateStyle": "absolute",
  22. "cortex-debug.enableTelemetry": false,
  23. "cortex-debug.JLinkGDBServerPath": "C:\\Program Files (x86)\\SEGGER\\JLink_V622c",
  24. "C_Cpp.clang_format_path": "C:\\Program Files\\LLVM\\bin",
  25. "C_Cpp.default.cStandard": "c11",
  26. "C_Cpp.default.intelliSenseMode": "gcc-x64",
  27. "C_Cpp.loggingLevel": "Warning",
  28. "c-cpp-flylint.clang.standard": ["c11"],
  29. "c-cpp-flylint.cppcheck.standard": [
  30. "c11"
  31. ],
  32. "c-cpp-flylint.flexelint.enable": false,
  33. "c-cpp-flylint.language": "c",
  34. "clang-format.language.apex.enable": false,
  35. "clang-format.language.glsl.enable": false,
  36. "clang-format.language.java.enable": false,
  37. "clang-format.language.javascript.enable": false,
  38. "clang-format.language.objective-c.enable": false,
  39. "clang-format.language.objective-cpp.enable": false,
  40. "clang-format.language.proto.enable": false,
  41. "clang-format.language.typescript.enable": false,
  42. "cppcheck.language": "c",
  43. "gitlens.advanced.telemetry.enabled": false,
  44. "cmake.configureOnOpen": true,
  45. "window.zoomLevel": 0
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement