xiyaowong / transparent.nvim

Remove all background colors to make nvim transparent
806 stars 23 forks source link

How can I make plugin fidget transparent? #23

Closed zsmatrix62 closed 1 year ago

zsmatrix62 commented 1 year ago

This is the plugin for showing progress of nvim lsp https://github.com/j-hui/fidget.nvim

image
xiyaowong commented 1 year ago

float window can't be transparent. :h winblend

ingur commented 1 year ago

@zsmatrix62 In case you were still wondering, u can make fidget transparent by turning off the winblend of fidget, something like:

    {
        "j-hui/fidget.nvim",
        opts = {
            window = {
                blend = 0,
            }
        },
    },