Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. {
  2. // __ __ ____ ____
  3. // \ \ / / / ___| / ___|
  4. // \ \ / / \___ \ | |
  5. // \ V / ___) | | |___
  6. // \_/isual |____/tudio \____|ode
  7.  
  8. /// Theme
  9. //
  10. // spacemacs
  11. "workbench.colorTheme": "Spacemacs - dark",
  12. "workbench.sideBar.location": "left",
  13. "editor.cursorStyle": "block",
  14. //
  15. // font
  16. "editor.fontFamily": "'Fira Code iScript', 'Fira Code', 'monospace'",
  17. "editor.fontLigatures": true,
  18. "editor.fontSize": 14,
  19. "editor.fontWeight": "normal",
  20. //
  21. // scope
  22. "editor.tokenColorCustomizations": {
  23. "textMateRules":
  24. [
  25. // italic and blod comments
  26. {
  27. "name": "Comment",
  28. "scope": [
  29. "comment",
  30. "comment.block",
  31. "comment.block.documentation",
  32. "comment.line",
  33. "comment.line.double-slash",
  34. "punctuation.definition.comment",
  35. ],
  36. "settings": { "fontStyle": "italic bold" }
  37. },
  38. // bold properties
  39. {
  40. "name": "Property",
  41. "scope": [
  42. "support.type.property-name"
  43. ],
  44. "settings": { "fontStyle": "bold" }
  45. }
  46. ]
  47. },
  48.  
  49. /// Behavior
  50. //
  51. // startup screen
  52. "workbench.startupEditor": "newUntitledFile",
  53. //
  54. // word wrap
  55. "editor.wordWrap": "on",
  56. //
  57. // shellcheck
  58. "shellcheck.exclude": [
  59. "*.ebuild",
  60. ],
  61. //
  62. // custom file associations
  63. "files.associations": {
  64. "*.rasi": "css",
  65. "*.conf*": "properties",
  66. },
  67.  
  68. /// Privacy
  69. //
  70. // telemetry
  71. "telemetry.enableTelemetry": false,
  72. //
  73. // updates
  74. "update.mode": "none",
  75. "update.showReleaseNotes": false,
  76. //
  77. // extensions
  78. "extensions.autoUpdate": true,
  79. "extensions.autoCheckUpdates": true,
  80. //
  81. // workbench
  82. "workbench.enableExperiments": false,
  83. "workbench.settings.enableNaturalLanguageSearch": false,
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement