boop
This commit is contained in:
@ -11,8 +11,7 @@ return {
|
||||
enable = true,
|
||||
priority = 15,
|
||||
style = {
|
||||
{ fg = "#403d4c" },
|
||||
{ fg = "#c21f30" },
|
||||
{ fg = "#393d4c" },
|
||||
},
|
||||
chars = {
|
||||
horizontal_line = "─",
|
||||
|
@ -16,34 +16,32 @@ return {
|
||||
-- vim.notify = require("notify")
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"j-hui/fidget.nvim",
|
||||
event = "VimEnter",
|
||||
cond = false,
|
||||
opts = {
|
||||
progress = {
|
||||
display = {
|
||||
done_ttl = 5,
|
||||
done_icon = " ",
|
||||
},
|
||||
},
|
||||
notification = {
|
||||
override_vim_notify = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
-- {
|
||||
-- "j-hui/fidget.nvim",
|
||||
-- event = "VimEnter",
|
||||
-- -- cond = false,
|
||||
-- opts = {
|
||||
-- progress = {
|
||||
-- display = {
|
||||
-- done_ttl = 5,
|
||||
-- done_icon = " ",
|
||||
-- },
|
||||
-- },
|
||||
-- notification = {
|
||||
-- override_vim_notify = true,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
{
|
||||
"echasnovski/mini.notify",
|
||||
version = false,
|
||||
dependencies = {
|
||||
"rcarriga/nvim-notify",
|
||||
"j-hui/fidget.nvim",
|
||||
-- "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
|
||||
vim.api.nvim_create_user_command("Notifications", require("mini.notify").show_history, {})
|
||||
vim.notify = require("mini.notify").make_notify()
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -1,7 +1,8 @@
|
||||
return {
|
||||
"folke/paint.nvim",
|
||||
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({
|
||||
highlights = {
|
||||
@ -47,7 +48,9 @@ return {
|
||||
|
||||
-- cnieves
|
||||
-- { 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,
|
||||
|
Reference in New Issue
Block a user