Revert "refactor(nvim): remove noice.nvim"

This reverts commit f9c76a5e7b2cdebeb7e379ff902ee53a0168f0e0.
This commit is contained in:
Price Hiller 2022-10-07 11:38:40 -05:00
parent cd2c8ee75a
commit cca243ba66

View File

@ -37,12 +37,34 @@ return packer.startup({
"nvim-lua/plenary.nvim",
})
-- Better looking notifications
-- Much nicer ui, integrates cmdheight = 0 wella
use({
"rcarriga/nvim-notify",
"folke/noice.nvim",
event = "VimEnter",
config = function()
require("noice").setup({
cmdline = {
view = "cmdline",
},
routes = {
{
filter = {
event = "cmdline",
find = "^%s*[/?]",
},
view = "cmdline",
},
},
})
-- NOTE: Might be redundant, to check later
require("plugins.configs.nvim-notify")
end,
requires = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
"hrsh7th/nvim-cmp",
},
})
-- Color schemes