diff --git a/README.md b/README.md index 68fd3725..d375f825 100644 --- a/README.md +++ b/README.md @@ -612,13 +612,15 @@ fidget = false ```
Special -Set `window.blend` to `0`: +Set `notification.window.winblend` to `0`: ```lua require("fidget").setup { - window = { - blend = 0, - }, + notification = { + window = { + winblend = 0, + }, + } -- ... the rest of your fidget config } ``` diff --git a/doc/catppuccin.txt b/doc/catppuccin.txt index b95d779b..5b467776 100644 --- a/doc/catppuccin.txt +++ b/doc/catppuccin.txt @@ -485,13 +485,15 @@ fidget.nvim>lua Special ~ -Set `window.blend` to `0`: +Set `notification.window.winblend` to `0`: >lua require("fidget").setup { - window = { - blend = 0, - }, + notification = { + window = { + winblend = 0, + }, + } -- ... the rest of your fidget config } < diff --git a/lua/catppuccin/types.lua b/lua/catppuccin/types.lua index 926c5e49..7cbe916e 100644 --- a/lua/catppuccin/types.lua +++ b/lua/catppuccin/types.lua @@ -133,11 +133,13 @@ ---@field dashboard boolean? ---@field dropbar CtpIntegrationDropbar | boolean? ---@field fern boolean? --- Set `window.blend` to `0` in your `fidget` config: +-- Set `notification.window.winblend` to `0` in your `fidget` config: -- -- ```lua -- require("fidget").setup { --- window = { blend = 0 }, +-- notification = { +-- window = { winblend = 0 }, +-- } -- } -- ``` ---@field fidget boolean?