From ab5e40bf1e21ada1062a80b612bd4b20ed9112a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 18 Jan 2024 01:03:12 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(vscodium):=20add=20comment-anc?= =?UTF-8?q?hors=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/VSCodium/User/settings.json | 195 ++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json index b0628345..a88c05bd 100644 --- a/.config/VSCodium/User/settings.json +++ b/.config/VSCodium/User/settings.json @@ -284,5 +284,200 @@ "**/drizzle.config.ts": true, "**/migrate.ts": true, "**/.env.example": true + }, + "commentAnchors.workspace.lazyLoad": false, + "commentAnchors.tags.anchors": { + // General Anchors + "ANCHOR": { + "iconColor": "default", + "highlightColor": "#A8C023", + "scope": "file", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + "TODO": { + "iconColor": "#91d7e3", + "highlightColor": "#91d7e3", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + + // FIX Anchors + "FIXME": { + "iconColor": "#ed8796", + "highlightColor": "#ed8796", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "FIX": { + "iconColor": "#ed8796", + "highlightColor": "#ed8796", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + "BUG": { + "iconColor": "#ed8796", + "highlightColor": "#ed8796", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "FIXIT": { + "iconColor": "#ed8796", + "highlightColor": "#ed8796", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "ISSUE": { + "iconColor": "#ed8796", + "highlightColor": "#ed8796", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + + // NOTE Anchors + "INFO": { + "iconColor": "#8bd5ca", + "highlightColor": "#8bd5ca", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "NOTE": { + "iconColor": "#8bd5ca", + "highlightColor": "#8bd5ca", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + + // Other Anchors + "HACK": { + "iconColor": "#eed49f", + "highlightColor": "#eed49f", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + + // Warning Anchors + "XXX": { + "iconColor": "#eed49f", + "highlightColor": "#eed49f", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "WARNING": { + "iconColor": "#eed49f", + "highlightColor": "#eed49f", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "WARN": { + "iconColor": "#eed49f", + "highlightColor": "#eed49f", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + + // Performance Anchors + "OPTIM": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "PERFORMANCE": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "OPTIMIZE": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "PERF": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + + // Testing Anchors + "PASSED": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "FAILED": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "TESTING": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + "TEST": { + "iconColor": "#f0c6c6", + "highlightColor": "#f0c6c6", + "scope": "workspace", + "isItalic": true, + "isBold": true, + "styleMode": "full" + }, + "REVIEW": { + "iconColor": "#a6da95", + "highlightColor": "#a6da95", + "scope": "workspace", + "isItalic": true, + "styleMode": "full" + }, + + // Dividing Anchors + "SECTION": { + "iconColor": "#f5bde6", + "highlightColor": "#f5bde6", + "scope": "workspace", + "behavior": "region", + "isItalic": true, + "styleMode": "full" + }, + "LINK": { + "iconColor": "#f5a97f", + "highlightColor": "#f5a97f", + "scope": "workspace", + "behavior": "link", + "isItalic": true, + "styleMode": "full" + } } }