feat: add nvim-notify
This commit is contained in:
parent
c97822479f
commit
5c711d509b
1 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue