removed duplicates of default config
This commit is contained in:
parent
c5de9593e6
commit
eb54412ef3
1 changed files with 0 additions and 27 deletions
|
@ -1,37 +1,10 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"rcarriga/nvim-notify",
|
"rcarriga/nvim-notify",
|
||||||
keys = {
|
|
||||||
{
|
|
||||||
"<leader>un",
|
|
||||||
function()
|
|
||||||
require("notify").dismiss({ silent = true, pending = true })
|
|
||||||
end,
|
|
||||||
desc = "Dismiss all Notifications",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
opts = {
|
|
||||||
timeout = 3000,
|
|
||||||
max_height = function()
|
|
||||||
return math.floor(vim.o.lines * 0.75)
|
|
||||||
end,
|
|
||||||
max_width = function()
|
|
||||||
return math.floor(vim.o.columns * 0.75)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
config = function()
|
config = function()
|
||||||
require("notify").setup({
|
require("notify").setup({
|
||||||
background_colour = "#191724",
|
background_colour = "#191724",
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
init = function()
|
|
||||||
-- when noice is not enabled, install notify on VeryLazy
|
|
||||||
local Util = require("lazyvim.util")
|
|
||||||
if not Util.has("noice.nvim") then
|
|
||||||
Util.on_very_lazy(function()
|
|
||||||
vim.notify = require("notify")
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue