hlchunk.nvim
This commit is contained in:
@ -1,21 +1,21 @@
|
||||
return {
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
event = "VimEnter",
|
||||
cond = true,
|
||||
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,
|
||||
},
|
||||
-- {
|
||||
-- "rcarriga/nvim-notify",
|
||||
-- event = "VimEnter",
|
||||
-- cond = true,
|
||||
-- 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,
|
||||
-- },
|
||||
{
|
||||
"j-hui/fidget.nvim",
|
||||
event = "VimEnter",
|
||||
@ -32,18 +32,18 @@ return {
|
||||
},
|
||||
},
|
||||
},
|
||||
-- {
|
||||
-- "echasnovski/mini.notify",
|
||||
-- version = false,
|
||||
-- dependencies = {
|
||||
-- "rcarriga/nvim-notify",
|
||||
-- "j-hui/fidget.nvim",
|
||||
-- },
|
||||
-- config = function()
|
||||
-- vim.notify = function(msg, level, opts)
|
||||
-- require("fidget").notify(msg, level, opts)
|
||||
-- require("mini.notify").make_notify()(msg, level, opts)
|
||||
-- end
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"echasnovski/mini.notify",
|
||||
version = false,
|
||||
dependencies = {
|
||||
"rcarriga/nvim-notify",
|
||||
"j-hui/fidget.nvim",
|
||||
},
|
||||
config = function()
|
||||
vim.notify = function(msg, level, opts)
|
||||
require("fidget").notify(msg, level, opts)
|
||||
require("mini.notify").make_notify()(msg, level, opts)
|
||||
end
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user