From 2d40f69d6f667e72b4b2b36716ddcf2d34a80a08 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sun, 16 Apr 2023 14:16:49 +0200 Subject: [PATCH] Feat(pluging): add noice to improve the ui --- nvim/.config/nvim/lua/plugins.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 5f23f94..8bf77d8 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -177,6 +177,23 @@ return packer.startup(function(use) end } + use({ + "folke/noice.nvim", + config = function() + require("noice").setup({ + -- add any options here + }) + end, + requires = { + -- 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", + } + }) + if PACKER_BOOTSTRAP then require("packer").sync() end