diff --git a/.config/nvim/lua/kamu/plugins/noice.lua b/.config/nvim/lua/kamu/plugins/noice.lua new file mode 100644 index 0000000..006f29c --- /dev/null +++ b/.config/nvim/lua/kamu/plugins/noice.lua @@ -0,0 +1,26 @@ +return { + "folke/noice.nvim", + event = "VeryLazy", + opts = { + }, + dependencies = { + "rcarriga/nvim-notify", + "MunifTanjim/nui.nvim", + }, + config = function(_, opts) + require("noice").setup(opts) + + require("notify").setup({ + background_colour = "#000000", + level = 2, + minimum_width = 50, + render = "compact", + time_formats = { + notification = "%T", + notification_history = "%FT%T" + }, + timeout = 5000, + top_down = true + }) + end, +} \ No newline at end of file