Revert "refactor(nvim): remove noice.nvim"
This reverts commit f9c76a5e7b2cdebeb7e379ff902ee53a0168f0e0.
This commit is contained in:
parent
cd2c8ee75a
commit
cca243ba66
@ -37,12 +37,34 @@ return packer.startup({
|
|||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Better looking notifications
|
-- Much nicer ui, integrates cmdheight = 0 wella
|
||||||
use({
|
use({
|
||||||
"rcarriga/nvim-notify",
|
"folke/noice.nvim",
|
||||||
|
event = "VimEnter",
|
||||||
config = function()
|
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")
|
require("plugins.configs.nvim-notify")
|
||||||
end,
|
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
|
-- Color schemes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user