Skip to content

Commit

Permalink
chore(opt): use vim global for winblend opt as well
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnwriter committed Dec 14, 2024
1 parent 01ffc17 commit c58fd79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lua/opts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ opts.initial = function()
opt.cmdheight = 0

g.border_style = "single" ---@type "single"|"double"|"rounded"
g.winblend = 0
g.mapleader = " "

-- Disable providers
Expand Down
2 changes: 1 addition & 1 deletion lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ local plugins = {
},
notifier = {
wo = {
winblend = 0,
winblend = vim.g.winblend,
},
},
indent = {
Expand Down
2 changes: 1 addition & 1 deletion lua/plugins/mini_nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ M.clue = {

M.notify = {
window = {
winblend = 0,
winblend = vim.g.winblend,
},
}

Expand Down

0 comments on commit c58fd79

Please sign in to comment.