• pamymaf
    link
    fedilink
    2810 months ago

    @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

      • pamymaf
        link
        fedilink
        210 months ago

        @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