vscode.nvim icon indicating copy to clipboard operation
vscode.nvim copied to clipboard

Suggestion for fixing transparency.

Open lucasmalara opened this issue 1 year ago • 0 comments

I have a reflection on how transparent option is implemented as of now. I suggest to override NeoTreeDimText.bg to "NONE" as well, when overriding transparent to true. To reduce this:

require("vscode").setup({
    -- other options...
    transparent = true,
    group_overrides = {
        NeoTreeDimText = { bg = "NONE" },
    },
})

To that:

require("vscode").setup({
    -- other options...
    transparent = true,
})

Without overriding NeoTreeDimText, there's a background behind directories markers with neo-tree.nvim which seems off: Screenshot 2025-01-07

lucasmalara avatar Jan 07 '25 01:01 lucasmalara