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