Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 496 Bytes

display_notify.md

File metadata and controls

24 lines (18 loc) · 496 Bytes

nvim-notify as display option

This plugin : https://github.com/rcarriga/nvim-notify

must be installed in order to use this configuration option Sniprun will use the global configuration of the plugin

To use it, configure sniprun with:

lua << EOF
require'sniprun'.setup({
    display = {"NvimNotify"},
})
EOF

The notification timeout can be changed with this configuration option:

  display_options = {
    notification_timeout = 5   -- timeout for nvim_notify output
  },