diff --git a/vim/.vim/lua/plugins/base.lua b/vim/.vim/lua/plugins/base.lua index 4d415d6..585af4b 100644 --- a/vim/.vim/lua/plugins/base.lua +++ b/vim/.vim/lua/plugins/base.lua @@ -11,8 +11,7 @@ return { enable = true, priority = 15, style = { - { fg = "#403d4c" }, - { fg = "#c21f30" }, + { fg = "#393d4c" }, }, chars = { horizontal_line = "─", diff --git a/vim/.vim/lua/plugins/notify.lua b/vim/.vim/lua/plugins/notify.lua index 0557741..fd48886 100644 --- a/vim/.vim/lua/plugins/notify.lua +++ b/vim/.vim/lua/plugins/notify.lua @@ -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, }, } diff --git a/vim/.vim/lua/plugins/paint.lua b/vim/.vim/lua/plugins/paint.lua index 2b4ab7d..e5daf7c 100644 --- a/vim/.vim/lua/plugins/paint.lua +++ b/vim/.vim/lua/plugins/paint.lua @@ -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,