diff --git a/.config/nvim/lua/syss-report-selector/init.lua b/.config/nvim/lua/syss-report-selector/init.lua index 2b17d07..92e9b77 100644 --- a/.config/nvim/lua/syss-report-selector/init.lua +++ b/.config/nvim/lua/syss-report-selector/init.lua @@ -29,13 +29,13 @@ end local debug = function(msg, title) msg = msg or "" title = title or "" - Snacks.notifier.notify(msg, "debug", { style = "compact", timeout = 10000, title = title }) + vim.notify(msg, "debug", { style = "compact", timeout = 10000, title = title }) end local info = function(msg, title) msg = msg or "" title = title or "" - Snacks.notifier.notify(msg, "info", { style = "compact", timeout = 10000, title = title }) + vim.notify(msg, "info", { style = "compact", timeout = 10000, title = title }) end M.directory_picker = function(opts)