1
0
Fork 0

nvim: configure notify

Wrapping doesn't work, but i'll leave it there for now.
This commit is contained in:
tastytea 2022-10-02 21:37:09 +02:00
parent c9a192ba76
commit eb5874f7a1
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 7 additions and 0 deletions

View File

@ -135,6 +135,13 @@ require('dressing').setup({
min_width = { 60, 0.4 },
}
})
require('notify').setup({
on_open = function(win)
vim.api.nvim_win_set_option(win, 'wrap', true) -- does not work
end,
stages = 'static',
})
vim.notify = require('notify')
require('autolist').setup({})