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, + }, }