From 8c0cb6cfff4b49776a1bcbecfa3efcad72fb577b Mon Sep 17 00:00:00 2001 From: Jason Dekarske Date: Thu, 16 Nov 2023 15:12:13 -0800 Subject: [PATCH 1/2] fix(fidget.nvim): Update integration options --- doc/catppuccin.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/catppuccin.txt b/doc/catppuccin.txt index b95d779b..9a27ebcd 100644 --- a/doc/catppuccin.txt +++ b/doc/catppuccin.txt @@ -489,9 +489,11 @@ Set `window.blend` to `0`: >lua require("fidget").setup { - window = { - blend = 0, - }, + notification = { + window = { + winblend = 0, + }, + } -- ... the rest of your fidget config } < From 00a4a3687e0f9746be4e69da61eb01039f92377e Mon Sep 17 00:00:00 2001 From: mrtnvgr Date: Fri, 17 Nov 2023 07:32:23 +0700 Subject: [PATCH 2/2] fix vim docs, update readme, update types --- README.md | 10 ++++++---- doc/catppuccin.txt | 2 +- lua/catppuccin/types.lua | 6 ++++-- 3 files changed, 11 insertions(+), 7 deletions(-) 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 9a27ebcd..5b467776 100644 --- a/doc/catppuccin.txt +++ b/doc/catppuccin.txt @@ -485,7 +485,7 @@ fidget.nvim>lua Special ~ -Set `window.blend` to `0`: +Set `notification.window.winblend` to `0`: >lua require("fidget").setup { 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?