hlchunk.nvim

This commit is contained in:
Christian Nieves
2024-08-13 06:12:36 +00:00
parent 81cc999670
commit 82411e7b77
6 changed files with 68 additions and 57 deletions

View File

@ -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,
},
}