From de2237fb2cfa1a93b625ac1827ca77f45532c944 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 04:00:58 +0100 Subject: [PATCH] feat(git-blame.lua): add git-blame plugin configuration The git-blame.lua file is added with the following configuration: - The plugin "f-person/git-blame.nvim" is included. - The event "VeryLazy" is associated with the plugin. --- lua/absolute/plugins/git-blame.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lua/absolute/plugins/git-blame.lua diff --git a/lua/absolute/plugins/git-blame.lua b/lua/absolute/plugins/git-blame.lua new file mode 100644 index 0000000..6b3efe4 --- /dev/null +++ b/lua/absolute/plugins/git-blame.lua @@ -0,0 +1,4 @@ +return { + "f-person/git-blame.nvim", + event = "VeryLazy", +}