diff --git a/modules/home-manager/files/nvim/lua/plugins/git-stuff.lua b/modules/home-manager/files/nvim/lua/plugins/git-stuff.lua new file mode 100644 index 0000000..8a35077 --- /dev/null +++ b/modules/home-manager/files/nvim/lua/plugins/git-stuff.lua @@ -0,0 +1,15 @@ +return { + { + "lewis6991/gitsigns.nvim", + config = function() + require("gitsigns").setup({ + current_line_blame = true, + }) + + vim.keymap.set("n", "", {}) + end, + }, + { + "tpope/vim-fugitive", + }, +}