diff options
Diffstat (limited to 'nvim/lua/plugins/noice.lua')
| -rw-r--r-- | nvim/lua/plugins/noice.lua | 22 |
1 files changed, 22 insertions, 0 deletions
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, + }, + }, +} |
