123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {
- "editor.suggestSelection": "first",
- "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
- "editor.fontFamily": "'Iosevka','Source Code Pro', 'DinaRemaster', 'IBM Plex Mono Light', 'Anonymous Pro', 'Terminus (TTF)', 'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace",
- "editor.fontSize": 18,
- "editor.fontWeight": "300",
- "files.autoSave": "onWindowChange",
- "workbench.iconTheme": "vscode-icons-mac",
- "update.showReleaseNotes": true,
- "workbench.startupEditor": "newUntitledFile",
- "explorer.compactFolders": false,
- "editor.cursorSmoothCaretAnimation": "on",
- "editor.minimap.enabled": true,
- "editor.smoothScrolling": true,
- "editor.wordSeparators": "`~!@#$%^&*()-_=+[{]}\\|;:'\",.<>/?",
- "editor.renderWhitespace": "all",
- "files.insertFinalNewline": true,
- "files.trimTrailingWhitespace": true,
- "files.trimFinalNewlines": true,
- "terminal.integrated.fontSize": 14,
- "terminal.integrated.fontWeight": "300",
- "terminal.integrated.fontFamily": "'JetBrains Mono'",
- "stylelint.validate": [
- "css"
- ],
- "workbench.panel.opensMaximized": "preserve",
- // "customizeUI.font.regular": "'JetBrains Mono'",
- "customizeUI.listRowHeight": 24,
- "customizeUI.titleBar": "frameless",
- "window.titleBarStyle": "custom",
- "editor.cursorStyle": "line",
- "terminal.integrated.cursorBlinking": true,
- "editor.fontLigatures": true,
- "debug.showBreakpointsInOverviewRuler": true,
- "editor.rulers": [
- 79
- ],
- "kite.showWelcomeNotificationOnStartup": false,
- "files.exclude": {
- "**/.git": false
- },
- "todo-tree.highlights.defaultHighlight": {
- "icon": "alert",
- "type": "text",
- "foreground": "#a54242",
- "background": "#1d1f21",
- "opacity": 50,
- "iconColour": "#5f819d"
- },
- "todo-tree.highlights.customHighlight": {
- "TODO": {
- "icon": "check",
- "type": "#282a2e"
- },
- "FIXME": {
- "foreground": "#1d1f21",
- "iconColour": "#f0c674",
- "gutterIcon": true
- }
- },
- "search.exclude": {
- "**/*.history": true
- },
- "workbench.productIconTheme": "fluent-icons",
- "[scss]": {
- "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
- },
- "[css]": {
- "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
- },
- "window.commandCenter": true,
- "todohighlight.isEnable": true,
- "todohighlight.isCaseSensitive": true,
- "todohighlight.keywords": [
- // "DEBUG:",
- // "REVIEW:",
- {
- "text": "TODO:",
- "color": "#1d1f21",
- "backgroundColor": "#f0c674",
- "isWholeLine": true,
- },
- {
- "text": "HACK:",
- "color": "#1d1f21",
- "backgroundColor": "#85678f",
- "isWholeLine": true,
- },
- {
- "text": "DEBUG:",
- "color": "#1d1f21",
- "backgroundColor": "#a54242",
- "isWholeLine": true,
- },
- {
- "text": "NOTE:",
- "color": "#1d1f21",
- "backgroundColor": "#5f819d",
- "isWholeLine": true,
- }
- ],
- "git.autofetch": true
- }
|