From 5210b2a15afa298dbd9fe75f9c64575ba681fc15 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sat, 6 Jan 2024 20:42:56 +0100 Subject: [PATCH] Feat(nvim): add noice --- nvim/.config/nvim/lua/plugins/noice.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nvim/.config/nvim/lua/plugins/noice.lua diff --git a/nvim/.config/nvim/lua/plugins/noice.lua b/nvim/.config/nvim/lua/plugins/noice.lua new file mode 100644 index 0000000..eb54ce4 --- /dev/null +++ b/nvim/.config/nvim/lua/plugins/noice.lua @@ -0,0 +1,15 @@ +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", + }, +}