Skip to content

Commit

Permalink
docs(fidget.nvim): window.blend -> notification.window.winblend (#…
Browse files Browse the repository at this point in the history
…615)

* fix(fidget.nvim): Update integration options

* fix vim docs, update readme, update types

---------

Co-authored-by: mrtnvgr <[email protected]>
  • Loading branch information
jdekarske and mrtnvgr authored Nov 17, 2023
1 parent cc717ac commit a8dfb96
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -612,13 +612,15 @@ fidget = false
```

<details> <summary>Special</summary>
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
}
```
Expand Down
10 changes: 6 additions & 4 deletions doc/catppuccin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
<
Expand Down
6 changes: 4 additions & 2 deletions lua/catppuccin/types.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit a8dfb96

Please sign in to comment.