From 6fb93f5e4788fd21cf96d2a745d61e52fe785d56 Mon Sep 17 00:00:00 2001 From: Yaser Alraddadi Date: Tue, 25 Jun 2024 22:57:08 +0300 Subject: [PATCH] Add Noice --- lua/custom/plugins/noice.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lua/custom/plugins/noice.lua diff --git a/lua/custom/plugins/noice.lua b/lua/custom/plugins/noice.lua new file mode 100644 index 00000000..6278aba9 --- /dev/null +++ b/lua/custom/plugins/noice.lua @@ -0,0 +1,17 @@ +return { + { + 'folke/noice.nvim', + event = 'VeryLazy', + opts = { + -- add any options here + }, + dependencies = { + -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries + 'MunifTanjim/nui.nvim', + -- OPTIONAL: + -- `nvim-notify` is only needed, if you want to use the notification view. + -- If not available, we use `mini` as the fallback + 'rcarriga/nvim-notify', + }, + }, +}