Moving notify to seperate file and passing config
This commit is contained in:
14
lua/taken/plugins/notify.lua
Normal file
14
lua/taken/plugins/notify.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
"rcarriga/nvim-notify",
|
||||
config = function()
|
||||
local notify = require("notify")
|
||||
|
||||
notify.setup({
|
||||
fps = 60,
|
||||
stages = "slide",
|
||||
timeout = 2500,
|
||||
})
|
||||
|
||||
vim.notify = notify
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user