aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/notify.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config/nvim/lua/tobyvin/plugins/notify.lua')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/notify.lua42
1 files changed, 18 insertions, 24 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/notify.lua b/nvim/.config/nvim/lua/tobyvin/plugins/notify.lua
index 9f7cc7a..d102e7f 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/notify.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/notify.lua
@@ -1,28 +1,22 @@
-local M = {}
-
-M.setup = function()
- local status_ok, notify = pcall(require, "notify")
- if not status_ok then
- vim.notify("Failed to load module 'notify'", vim.log.levels.ERROR)
- return
- end
+local status_ok, notify = pcall(require, "notify")
+if not status_ok then
+ vim.notify("Failed to load module 'notify'", vim.log.levels.ERROR)
+ return
+end
- vim.notify.use_console = false
- vim.api.nvim_create_autocmd("User", {
- group = vim.api.nvim_create_augroup("tobyvin_nvim-notify", { clear = true }),
- pattern = "Notify",
- callback = function(args)
- notify.notify(unpack(args.data))
- end,
- })
+vim.notify.use_console = false
+vim.api.nvim_create_autocmd("User", {
+ group = vim.api.nvim_create_augroup("tobyvin_nvim-notify", { clear = true }),
+ pattern = "Notify",
+ callback = function(args)
+ notify.notify(unpack(args.data))
+ end,
+})
- vim.api.nvim_set_hl(0, "NotifyBackground", { link = "WinBar" })
+vim.api.nvim_set_hl(0, "NotifyBackground", { link = "WinBar" })
- local telescope_ok, telescope = pcall(require, "telescope")
- if telescope_ok then
- telescope.load_extension("notify")
- vim.keymap.set("n", "<leader>fn", telescope.extensions.notify.notify, { desc = "notifications" })
- end
+local telescope_ok, telescope = pcall(require, "telescope")
+if telescope_ok then
+ telescope.load_extension("notify")
+ vim.keymap.set("n", "<leader>fn", telescope.extensions.notify.notify, { desc = "notifications" })
end
-
-return M