Feat(pluging): add noice to improve the ui

This commit is contained in:
Bertrand Benjamin 2023-04-16 14:16:49 +02:00
parent 30ba1656b4
commit 2d40f69d6f
1 changed files with 17 additions and 0 deletions

View File

@ -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