DEV Community

Saxode
Saxode

Posted on

3

My "New" VSCode Settings

Hey there!

For some reason I redo my vscode settings again lmao

{
"explorer.openEditors.visible": 0,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.fontWeight": "300",
"editor.letterSpacing": 1.2,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"files.autoSave": "afterDelay",
"window.zoomLevel": 0,
"C_Cpp.updateChannel": "Insiders",
"workbench.colorTheme": "Dark hacker theme",
"breadcrumbs.enabled": false,
"customizeUI.font.regular": "JetBrains Mono",
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"editor.cursorBlinking": "smooth",
"explorer.sortOrder": "type",
"todo-tree.tree.showScanModeButton": true,
"todo-tree.highlights.enabled": true,
"workbench.statusBar.visible": true,
"todo-tree.tree.autoRefresh": true,
"todo-tree.highlights.defaultHighlight": {
"type": "text-and-comment"
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"foreground": "black",
"background": "green",
"iconColour": "green",
"icon": "check",
"type": "text"
},
"FIXME": {
"foreground": "black",
"background": "red",
"iconColour": "red",
"icon": "bug"
},
"REVIEW": {
"foreground": "black",
"background": "cyan",
"iconColour": "lightblue",
"icon": "eye"
},
"HACK": {
"foreground": "black",
"background": "#FFA500",
"iconColour": "orange",
"icon": "alert"
},
"REF": {
"foreground": "black",
"background": "grey",
"iconColour": "grey",
"icon": "link",
"type": "tag"
}
},
"todo-tree.general.tags": [
"TODO",
"FIXME",
"REVIEW",
"HACK",
"REF"
]
}

Needed extensions: Todo Tree, Dark hacker theme, customise UI

Needed others: JetBrains Mono

Hope this helps you!

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (1)

Collapse
 
saxode profile image
Saxode

By the way if you want you can even add some new tags yourself

{
"explorer.openEditors.visible": 0,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.fontWeight": "300",
"editor.letterSpacing": 1.2,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"files.autoSave": "afterDelay",
"window.zoomLevel": 0,
"C_Cpp.updateChannel": "Insiders",
"workbench.colorTheme": "Dark hacker theme",
"breadcrumbs.enabled": false,
"customizeUI.font.regular": "JetBrains Mono",
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"editor.cursorBlinking": "smooth",
"explorer.sortOrder": "type",
"todo-tree.tree.showScanModeButton": true,
"todo-tree.highlights.enabled": true,
"workbench.statusBar.visible": true,
"todo-tree.tree.autoRefresh": true,
"todo-tree.highlights.defaultHighlight": {
"type": "text-and-comment"
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"foreground": "black",
"background": "green",
"iconColour": "green",
"icon": "check",
"type": "text"
},
"FIXME": {
"foreground": "black",
"background": "red",
"iconColour": "red",
"icon": "bug"
},
"REVIEW": {
"foreground": "black",
"background": "cyan",
"iconColour": "lightblue",
"icon": "eye"
},
"HACK": {
"foreground": "black",
"background": "#FFA500",
"iconColour": "orange",
"icon": "alert"
},
"REF": {
"foreground": "black",
"background": "grey",
"iconColour": "grey",
"icon": "link",
"type": "tag"
},
"TRY": {
"foreground": "black",
"background": "#eb8c34",
"iconColour": "green",
"icon": "question",
"type": "text"
},
},
"todo-tree.general.tags": [
"TODO",
"FIXME",
"REVIEW",
"HACK",
"REF",
"TRY"
]
}

I added a TRY tag

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs