stevearc / overseer.nvim

A task runner and job management plugin for Neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feature request: ToggleTerm respect theme transparency

ls-devs opened this issue · comments

Did you check existing requests?

  • I have searched the existing issues

Describe the feature

Hi,
Actually when openning toggleterm/shell it looks like this :
image

It doesn't respect my theme transparency and I can't find any solution to make it.

Provide background

No response

What is the significance of this feature?

nice to have

Additional details

No response

There's no real concept of "theme transparency" for Neovim, because there's no way to configure global floating window transparency. The transparency is set on a per-window basis by whatever plugin is opening that float. For overseer, you can configure this by setting the :help winblend window option on the form. There's a place for this in the setup config table:

require("overseer").setup({
  form = {
    win_opts = {
      winblend = 100,
    },
  },
})