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", "<leader>G", "<cmd>Git<cr>", {}) + end, + } +}