From a8dfb969e76d1a0752d98b5347be9ffb9bca9592 Mon Sep 17 00:00:00 2001 From: Jason Dekarske Date: Thu, 16 Nov 2023 17:01:25 -0800 Subject: [PATCH] docs(fidget.nvim): `window.blend` -> `notification.window.winblend` (#615) * fix(fidget.nvim): Update integration options * fix vim docs, update readme, update types --------- Co-authored-by: mrtnvgr --- README.md | 10 ++++++---- doc/catppuccin.txt | 10 ++++++---- lua/catppuccin/types.lua | 6 ++++-- 3 files changed, 16 insertions(+), 10 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 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?