From ec110edaff2a2cea5b12fab64587fdad13355a29 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 10 Jan 2022 14:53:26 -0800 Subject: [PATCH] Make notifications prettier --- neovim/lua/plugins.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index dabce57..73246f7 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -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()