Files
dotfiles/vim/.vim/lua/plugins/notify.lua
Christian Nieves ece8d50bef Fix treesitter
2024-01-04 22:47:51 +00:00

17 lines
414 B
Lua

return {
"rcarriga/nvim-notify",
event = "VimEnter",
lazy = true,
config = function()
-- local colors = require("catppuccin.palettes").get_palette()
require("notify").setup({
-- background_colour = colors.base,
fps = 20, -- default 30
-- stages = "slide", -- default fade_in_slide_out
timeout = 5000, -- default 5000
render = "wrapped-compact",
})
vim.notify = require("notify")
end,
}