feat(nvim): add nvim-notify for prettier notifications in vim

This commit is contained in:
2025-05-18 20:25:21 +02:00
parent b8e8181911
commit 50afa3bc6c

View File

@@ -0,0 +1,9 @@
return {
"rcarriga/nvim-notify",
event = "VeryLazy",
config = function(_, opts)
require("notify").setup(opts)
vim.notify = require("notify")
vim.opt.termguicolors = true
end,
}