settings.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "editor.suggestSelection": "first",
  3. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  4. "editor.fontFamily": "'Iosevka','Source Code Pro', 'DinaRemaster', 'IBM Plex Mono Light', 'Anonymous Pro', 'Terminus (TTF)', 'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace",
  5. "editor.fontSize": 18,
  6. "editor.fontWeight": "300",
  7. "files.autoSave": "onWindowChange",
  8. "workbench.iconTheme": "vscode-icons-mac",
  9. "update.showReleaseNotes": true,
  10. "workbench.startupEditor": "newUntitledFile",
  11. "explorer.compactFolders": false,
  12. "editor.cursorSmoothCaretAnimation": "on",
  13. "editor.minimap.enabled": true,
  14. "editor.smoothScrolling": true,
  15. "editor.wordSeparators": "`~!@#$%^&*()-_=+[{]}\\|;:'\",.<>/?",
  16. "editor.renderWhitespace": "all",
  17. "files.insertFinalNewline": true,
  18. "files.trimTrailingWhitespace": true,
  19. "files.trimFinalNewlines": true,
  20. "terminal.integrated.fontSize": 14,
  21. "terminal.integrated.fontWeight": "300",
  22. "terminal.integrated.fontFamily": "'JetBrains Mono'",
  23. "stylelint.validate": [
  24. "css"
  25. ],
  26. "workbench.panel.opensMaximized": "preserve",
  27. // "customizeUI.font.regular": "'JetBrains Mono'",
  28. "customizeUI.listRowHeight": 24,
  29. "customizeUI.titleBar": "frameless",
  30. "window.titleBarStyle": "custom",
  31. "editor.cursorStyle": "line",
  32. "terminal.integrated.cursorBlinking": true,
  33. "editor.fontLigatures": true,
  34. "debug.showBreakpointsInOverviewRuler": true,
  35. "editor.rulers": [
  36. 79
  37. ],
  38. "kite.showWelcomeNotificationOnStartup": false,
  39. "files.exclude": {
  40. "**/.git": false
  41. },
  42. "todo-tree.highlights.defaultHighlight": {
  43. "icon": "alert",
  44. "type": "text",
  45. "foreground": "#a54242",
  46. "background": "#1d1f21",
  47. "opacity": 50,
  48. "iconColour": "#5f819d"
  49. },
  50. "todo-tree.highlights.customHighlight": {
  51. "TODO": {
  52. "icon": "check",
  53. "type": "#282a2e"
  54. },
  55. "FIXME": {
  56. "foreground": "#1d1f21",
  57. "iconColour": "#f0c674",
  58. "gutterIcon": true
  59. }
  60. },
  61. "search.exclude": {
  62. "**/*.history": true
  63. },
  64. "workbench.productIconTheme": "fluent-icons",
  65. "[scss]": {
  66. "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
  67. },
  68. "[css]": {
  69. "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
  70. },
  71. "window.commandCenter": true,
  72. "todohighlight.isEnable": true,
  73. "todohighlight.isCaseSensitive": true,
  74. "todohighlight.keywords": [
  75. // "DEBUG:",
  76. // "REVIEW:",
  77. {
  78. "text": "TODO:",
  79. "color": "#1d1f21",
  80. "backgroundColor": "#f0c674",
  81. "isWholeLine": true,
  82. },
  83. {
  84. "text": "HACK:",
  85. "color": "#1d1f21",
  86. "backgroundColor": "#85678f",
  87. "isWholeLine": true,
  88. },
  89. {
  90. "text": "DEBUG:",
  91. "color": "#1d1f21",
  92. "backgroundColor": "#a54242",
  93. "isWholeLine": true,
  94. },
  95. {
  96. "text": "NOTE:",
  97. "color": "#1d1f21",
  98. "backgroundColor": "#5f819d",
  99. "isWholeLine": true,
  100. }
  101. ],
  102. "git.autofetch": true
  103. }