Closed zyriab closed 1 year ago
This is something I planned to add, So I'll consider this as enhancement issue.
This is now implemented. To use it add this to your configuration:
let g:db_ui_use_nvim_notify = 1
Note that it's using Neovim's vim.notify
API, so in order to use nvim-notify
plugin you need to assign it to vim.notify
as they suggest in their docs
You da man
for future search engine travelers.
As mentioned by kristijanhusak
, assigning the plugin to vim-notify
means putting this in your neovim config
vim.notify = require('notify')
Here's an example on how to do that if you're using lazy
{
'rcarriga/nvim-notify',
config = function()
vim.notify = require('notify')
end
},
Hi there, thanks for this great plugin :) I was wondering if there was a way to pipe the notifications to nvim-notify instead of using the plugin's default notifications UI?
Cheers