This commit is contained in:
Christian Nieves
2024-08-13 06:27:11 +00:00
parent 82411e7b77
commit 0202fcc32c
3 changed files with 25 additions and 25 deletions

View File

@ -11,8 +11,7 @@ return {
enable = true, enable = true,
priority = 15, priority = 15,
style = { style = {
{ fg = "#403d4c" }, { fg = "#393d4c" },
{ fg = "#c21f30" },
}, },
chars = { chars = {
horizontal_line = "", horizontal_line = "",

View File

@ -16,34 +16,32 @@ return {
-- vim.notify = require("notify") -- vim.notify = require("notify")
-- end, -- end,
-- }, -- },
{ -- {
"j-hui/fidget.nvim", -- "j-hui/fidget.nvim",
event = "VimEnter", -- event = "VimEnter",
cond = false, -- -- cond = false,
opts = { -- opts = {
progress = { -- progress = {
display = { -- display = {
done_ttl = 5, -- done_ttl = 5,
done_icon = "󰞑 ", -- done_icon = "󰞑 ",
}, -- },
}, -- },
notification = { -- notification = {
override_vim_notify = true, -- override_vim_notify = true,
}, -- },
}, -- },
}, -- },
{ {
"echasnovski/mini.notify", "echasnovski/mini.notify",
version = false, version = false,
dependencies = { dependencies = {
"rcarriga/nvim-notify", "rcarriga/nvim-notify",
"j-hui/fidget.nvim", -- "j-hui/fidget.nvim",
}, },
config = function() config = function()
vim.notify = function(msg, level, opts) vim.api.nvim_create_user_command("Notifications", require("mini.notify").show_history, {})
require("fidget").notify(msg, level, opts) vim.notify = require("mini.notify").make_notify()
require("mini.notify").make_notify()(msg, level, opts)
end
end, end,
}, },
} }

View File

@ -1,7 +1,8 @@
return { return {
"folke/paint.nvim", "folke/paint.nvim",
config = function() config = function()
vim.api.nvim_set_hl(0, "LightPurple", { fg = "#7f67c5" }) vim.api.nvim_set_hl(0, "NievesLightPurple", { fg = "#7f67c5" })
vim.api.nvim_set_hl(0, "NievesViolet", { fg = "#4000f0", bold = true })
require("paint").setup({ require("paint").setup({
highlights = { highlights = {
@ -47,7 +48,9 @@ return {
-- cnieves -- cnieves
-- { pattern = "cnieves", hl = "LightPurple", filter = {} }, -- { pattern = "cnieves", hl = "LightPurple", filter = {} },
{ pattern = "Christian Nieves", hl = "LightPurple", filter = {} }, -- { pattern = "Christian Nieves", hl = "LightPurple", filter = {} },
{ pattern = "Christian Nieves", hl = "NievesViolet", filter = {} },
{ pattern = "Christian Nieves", hl = "NievesLightPurple", filter = {} },
}, },
}) })
end, end,