From 9cb425d20ac6b4a1f411fa08dc59e12e4533b560 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 21 May 2025 15:22:53 -0700 Subject: [PATCH] Enable git blame view by default --- nvim/lua/plugins/git.lua | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/nvim/lua/plugins/git.lua b/nvim/lua/plugins/git.lua index 32ac809..e5c3471 100644 --- a/nvim/lua/plugins/git.lua +++ b/nvim/lua/plugins/git.lua @@ -1,12 +1,14 @@ return { - { - "tpope/vim-fugitive", - }, - { - "lewis6991/gitsigns.nvim", - tag = "v1.0.2", - config = function() - require("gitsigns").setup({}) - end, - }, + { + "tpope/vim-fugitive", + }, + { + "lewis6991/gitsigns.nvim", + tag = "v1.0.2", + config = function() + require("gitsigns").setup({ + current_line_blame = true + }) + end, + }, }