mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 18:27:34 +00:00
Make notifications prettier
This commit is contained in:
parent
f99002e303
commit
ec110edaff
@ -368,6 +368,22 @@ return require("packer").startup({
|
|||||||
end,
|
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
|
-- Auto sync after bootstrapping on a fresh box
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require("packer").sync()
|
require("packer").sync()
|
||||||
|
Loading…
Reference in New Issue
Block a user