From 3a2c5a5ea4b5bb70fb6a15e4ff6fb1a5212aaf32 Mon Sep 17 00:00:00 2001 From: Daniel Heras Quesada Date: Thu, 11 Sep 2025 17:19:28 +0200 Subject: [PATCH] style: minor styling plugins included --- lazy-lock.json | 3 ++- lua/plugins/git.lua | 16 +++++++++++++++- lua/plugins/style.lua | 15 +++++++++++++++ 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index f079bc0..26930ed 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -13,9 +13,10 @@ "mini.icons": { "branch": "main", "commit": "f9a177c11daa7829389b7b6eaaec8b8a5c47052d" }, "neo-tree.nvim": { "branch": "main", "commit": "ed057048a281b418d5318dd5153f9486daa517a3" }, "no-neck-pain.nvim": { "branch": "main", "commit": "76ccd195fb2195ae1b9b9f0d539c517fa3f8a2b9" }, + "noice.nvim": { "branch": "main", "commit": "0427460c2d7f673ad60eb02b35f5e9926cf67c59" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, - "nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" }, + "nvim-ts-autotag": { "branch": "main", "commit": "c4ca798ab95b316a768d51eaaaee48f64a4a46bc" }, "nvim-web-devicons": { "branch": "master", "commit": "6e51ca170563330e063720449c21f43e27ca0bc1" }, "nvim-window-picker": { "branch": "main", "commit": "6382540b2ae5de6c793d4aa2e3fe6dbb518505ec" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua index 10366f0..21d9592 100644 --- a/lua/plugins/git.lua +++ b/lua/plugins/git.lua @@ -8,9 +8,23 @@ return { return require("plugins.opts.gitsigns") end, }, + { "sindrets/diffview.nvim", lazy = false, }, - { "tpope/vim-fugitive" } + + { "tpope/vim-fugitive" }, + + { + dir = "~/Documents/Code/monkey-alert.nvim", + name = "monkey-alert", + opts = { + monkey_mail_list = "john@doe.org,another@dude.me,dani.heras@hotmail.com", + blame_text_color_hex = "#c0ffee", + blame_text = "- Monkey alert 🐒", + blame_position = "eol", + auto_attach = true + }, + }, } diff --git a/lua/plugins/style.lua b/lua/plugins/style.lua index 9800a57..ed882ad 100644 --- a/lua/plugins/style.lua +++ b/lua/plugins/style.lua @@ -10,8 +10,23 @@ return { variant = "darker", -- dark, light, darker | dawn }, }, + { "echasnovski/mini.icons" }, + { + "folke/noice.nvim", + event = "VeryLazy", + opts = function() + return require("plugins.opts.noice") + end, + dependencies = { + "MunifTanjim/nui.nvim", + -- OPTIONAL: + -- `nvim-notify` is only needed, if you want to use the notification view. + -- If not available, we use `mini` as the fallback + -- "rcarriga/nvim-notify", + } + }, { "shortcuts/no-neck-pain.nvim",