blob: 75ceb478be6bbcf8105e3636d3fa206c27eee862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
vim.pack.add({
"https://github.com/rcarriga/nvim-notify",
})
require("notify").setup({
background_colour = "#000000",
render = "wrapped-compact",
stages = "static",
})
vim.notify = require("notify") -- Use "notify" plugin as default notify function
|