Make notifications prettier

This commit is contained in:
ViViDboarder 2022-01-10 14:53:26 -08:00
parent f99002e303
commit ec110edaff
1 changed files with 16 additions and 0 deletions

View File

@ -368,6 +368,22 @@ return require("packer").startup({
end,
})
-- Fancy notifications
use({
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
icons = {
ERROR = "🔥",
WARN = "⚠️",
DEBUG = "🤔",
INFO = "*",
},
})
vim.notify = require("notify")
end,
})
-- Auto sync after bootstrapping on a fresh box
if packer_bootstrap then
require("packer").sync()