this post was submitted on 05 Sep 2023
1312 points (97.4% liked)
Programmer Humor
19471 readers
1396 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
@alphacyberranger
This is why I have my VSCodium set to highlight all indentation levels in my settings.json
https://code.visualstudio.com/api/references/theme-color
Can you please share a screenshot of how this looks like?
@Toldry
Here's the relevant section of my settings.json
json { "workbench.tree.renderIndentGuides": "always", "workbench.tree.indent": 15, "editor.guides.indentation": true, "workbench.colorCustomizations": { "editorIndentGuide.background": "#fd6bff", "tree.indentGuidesStroke": "#fd6bff" } }
@alphacyberranger