From 9f20c1f313e20102dd83adeaf091284be1fd82d0 Mon Sep 17 00:00:00 2001 From: "eric.marin" Date: Wed, 11 Sep 2024 14:49:39 +0200 Subject: config --- nvim/lua/plugins/noice.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 nvim/lua/plugins/noice.lua (limited to 'nvim/lua/plugins/noice.lua') diff --git a/nvim/lua/plugins/noice.lua b/nvim/lua/plugins/noice.lua new file mode 100644 index 0000000..575cfcf --- /dev/null +++ b/nvim/lua/plugins/noice.lua @@ -0,0 +1,22 @@ +local config = function() + require("notify").setup({ + render = "wrapped-compact", + max_width = 50 + }) +end + +return { + "folke/noice.nvim", + lazy = true, + event = "VeryLazy", + opts = { + -- add any options here + }, + dependencies = { + "MunifTanjim/nui.nvim", + { + "rcarriga/nvim-notify", + config = config, + }, + }, +} -- cgit v1.2.3