From 64b70e8e159755aef5b1c6ef670f338245545a63 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 3 Aug 2024 02:37:57 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(git-blame):=20add=20git-blame?= =?UTF-8?q?=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the git-blame plugin and some missing comments --- lua/config/options.lua | 6 ++++-- lua/plugins/util.lua | 8 ++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/lua/config/options.lua b/lua/config/options.lua index 43454fc..ae7156c 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -10,12 +10,14 @@ vim.g.mapleader = " " vim.g.loaded_perl_provider = 0 -- Prefer basedpyright vim.g.lazyvim_python_lsp = "basedpyright" + +-- --------------------------------- GIT-BLAME ---------------------------------- +vim.g.gitblame_display_virtual_text = 0 -- Disable virtual text + -- --------------------------------- ROOTIEST ----------------------------------- vim.g.aitool = "codeium" vim.g.usewakatime = true vim.g.usehardtime = false vim.g.useimage = true vim.o.background = "dark" - vim.g.DashboardHeaderColor = "#A6E3A1" -vim.g.mousemoveevent = true diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 4f0d058..5527fa9 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -134,7 +134,7 @@ return { }, }, }, - { + { -- CapsWord "dmtrKovalenko/caps-word.nvim", lazy = true, opts = {}, @@ -146,11 +146,15 @@ return { }, }, }, - { + { -- Music Controls "AntonVanAssche/music-controls.nvim", dependencies = { "rcarriga/nvim-notify" }, opts = { default_player = "YoutubeMusic", }, }, + { -- Git Blame + "f-person/git-blame.nvim", + event = "VeryLazy", + }, }