Skip to content

Commit b91d45f

Browse files
committed
fix(mini.notify): fully opaque window
1 parent 3ffcdd0 commit b91d45f

4 files changed

Lines changed: 5 additions & 11 deletions

File tree

colors/nordstone.lua

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -338,11 +338,6 @@ loadColorSet({
338338
MiniHipatternsDebugStatement = { fg = c.nord12 },
339339
})
340340

341-
-- mini.notify
342-
loadColorSet({
343-
MiniNotifyBorder = { link = "FloatBorder" },
344-
})
345-
346341
-- filetypes/oil.lua
347342
loadColorSet({
348343
OilGitAdded = { fg = c.nord14, bg = "NONE" },

init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ require("ruicsh")
1212
require("config.lazy")
1313

1414
vim.cmd("LspEnable")
15+

lua/plugins/mini.notify.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ return {
1919
border = "single",
2020
},
2121
max_width_share = 0.382,
22-
winblend = 25,
22+
winblend = 0,
2323
},
2424
},
2525

plugin/commands/load-env-vars.lua

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
vim.api.nvim_create_user_command("LoadEnvVars", function()
44
local dirs = {
5-
-- Config directory
6-
vim.fn.stdpath("config"), -- Current working directory
7-
vim.fn.getcwd(),
8-
-- Git root directory
9-
require("snacks.git").get_root(),
5+
vim.fn.stdpath("config"), -- Neovim configuration directory
6+
vim.fn.getcwd(), -- Current working directory
7+
require("snacks.git").get_root(), -- Git root directory
108
}
119

1210
for _, dir in ipairs(dirs) do

0 commit comments

Comments
 (0)