From 04f2d7627def41e62c8103f7c51c47483c1c7e93 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 7 Jun 2024 14:44:17 -0400 Subject: [PATCH] Add gitsigns and vim-fugitive to neovim --- .../files/nvim/lua/plugins/git-stuff.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/home-manager/files/nvim/lua/plugins/git-stuff.lua 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", + }, +}