From 711138561fc3a55ad48bb679638d8a9d97d5dc0d Mon Sep 17 00:00:00 2001 From: xesc Date: Sun, 2 Mar 2025 16:01:53 +0100 Subject: [PATCH] add fugitive --- lua/plugin/fugitive.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/plugin/fugitive.lua diff --git a/lua/plugin/fugitive.lua b/lua/plugin/fugitive.lua new file mode 100644 index 0000000..cb245d9 --- /dev/null +++ b/lua/plugin/fugitive.lua @@ -0,0 +1,8 @@ +return { + { + 'tpope/vim-fugitive', + config = function() + vim.api.nvim_set_keymap("n", "G", "Git", {}) + end, + } +}