feat: add nvim-notify

main
mandlm 2022-04-27 19:56:22 +02:00
parent c97822479f
commit 5c711d509b
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 10 additions and 0 deletions

View File

@ -167,5 +167,15 @@ return require('packer').startup(function(use)
-- ansible filetype
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
end)