nix-config/home/vim/plugin/settings/notify.vim

10 lines
110 B
VimL
Raw Normal View History

2022-03-11 10:38:42 +01:00
lua << EOF
local notify = require("notify")
notify.setup({
stages = "slide",
})
vim.notify = notify
EOF