Skip Navigation

You're viewing a single thread.

128 comments
  • @alphacyberranger
    This is why I have my VSCodium set to highlight all indentation levels in my settings.json

    To see the editor indent guides, set "editor.guides.indentation": true and "editor.guides.highlightActiveIndentation": true.

    editorIndentGuide.background: Color of the editor indentation guides.
    editorIndentGuide.activeBackground: Color of the active editor indentation guide.

    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

You've viewed 128 comments.