diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index c66c5a4f..e6743d47 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -30,6 +30,29 @@ return { end end, }, + { + "nvim-telescope/telescope.nvim", + opts = function() + local Util = require("lazyvim.util") + if Util.has("nvim-notify") then + require("telescope").load_extension("notify") + end + end, + dependencies = { + { + "rcarriga/nvim-notify", + keys = { + { + "sN", + function() + require("telescope").extensions.notify.notify() + end, + desc = "Notifications", + }, + }, + }, + }, + }, -- better vim.ui {