mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 07:57:36 +00:00
Make notifications prettier
This commit is contained in:
parent
f99002e303
commit
ec110edaff
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user