feat: add nvim-notify

This commit is contained in:
Michael Mandl 2022-04-27 19:56:22 +02:00
parent c97822479f
commit 5c711d509b
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -167,5 +167,15 @@ return require('packer').startup(function(use)
-- ansible filetype -- ansible filetype
use({ "pearofducks/ansible-vim" }) use({ "pearofducks/ansible-vim" })
-- nvim-notify
use({ "rcarriga/nvim-notify",
config = function()
require("notify").setup({
stages = "fade",
})
vim.notify = require("notify")
end
})
if packer_bootstrap then require('packer').sync() end if packer_bootstrap then require('packer').sync() end
end) end)