Added noice plugin to use noice UI

This commit is contained in:
Juan Manuel Rocha Magalhães 2025-04-17 20:19:03 -03:00
parent 44045d1fa9
commit 2d0cbe47ae
4 changed files with 38 additions and 0 deletions

View file

@ -185,6 +185,8 @@ local plugins = {
require 'core.plugins.copilot',
require 'core.plugins.markdown-preview',
require 'core.plugins.noice',
}
local pluginOptions = {}

View file

@ -0,0 +1,17 @@
return {
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {
-- add any options here
},
dependencies = {
-- 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",
}
}
}