Skip to content

Commit

Permalink
refactor(Notify): add timeout for 200ms
Browse files Browse the repository at this point in the history
  • Loading branch information
rizkyilhampra committed Feb 12, 2024
1 parent 7b67841 commit 669f913
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lua/aquila/plugins/notify.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
return {
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
-- this for transparency
notify.setup({ background_colour = "#000000" })
-- this overwrites the vim notify function
vim.notify = notify.notify
require("notify").setup({
timeout = 200
})
end
}

0 comments on commit 669f913

Please sign in to comment.