diff --git a/lua/taken/plugins/notify.lua b/lua/taken/plugins/notify.lua new file mode 100644 index 0000000..3e22ed5 --- /dev/null +++ b/lua/taken/plugins/notify.lua @@ -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, +} diff --git a/lua/taken/plugins/otherplugins.lua b/lua/taken/plugins/otherplugins.lua index b37ba07..2cb3e37 100644 --- a/lua/taken/plugins/otherplugins.lua +++ b/lua/taken/plugins/otherplugins.lua @@ -32,12 +32,6 @@ return { event = { "BufReadPre", "BufNewFile" }, config = true, }, - { - "rcarriga/nvim-notify", - config = function() - vim.notify = require("notify") - end, - }, { "kylechui/nvim-surround", version = "*",