Skip to content

Instantly share code, notes, and snippets.

@LucasLevino
Last active January 14, 2021 21:11
Show Gist options
  • Save LucasLevino/7df74dcc6059520a901a448dbea8c500 to your computer and use it in GitHub Desktop.
Save LucasLevino/7df74dcc6059520a901a448dbea8c500 to your computer and use it in GitHub Desktop.
Better Comments - Setup Darcula (for VS Code)
1. Install plugin in VS Code (Better Comments)
2. Enter setting.json
3. insert the config code
"better-comments.tags": [
{
"tag": "!",
"color": "#ff5555",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#8be9fd",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#44475a",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "TODO:",
"color": "#282a36",
"strikethrough": false,
"underline": false,
"backgroundColor": "#f1fa8c",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#50fa7b",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "test",
"color": "#ffb86c",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment