diff --git a/lua/plugins/.DS_Store b/lua/plugins/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/lua/plugins/.DS_Store and /dev/null differ diff --git a/lua/plugins/fugitive.lua b/lua/plugins/fugitive.lua index 0b426c0..c8510d9 100644 --- a/lua/plugins/fugitive.lua +++ b/lua/plugins/fugitive.lua @@ -1,3 +1,9 @@ return { - "tpope/vim-fugitive" + "tpope/vim-fugitive", + config = function() + vim.keymap.set("n", "gs", "Git") + vim.keymap.set("n", "gvd", "Gvdiff") + vim.keymap.set("n", "gc", "Git commit") + vim.keymap.set("n", "gp", "Git push") + end } diff --git a/lua/plugins/harpoon.lua b/lua/plugins/harpoon.lua index a152346..e2aaa0f 100644 --- a/lua/plugins/harpoon.lua +++ b/lua/plugins/harpoon.lua @@ -1,10 +1,10 @@ return { "ThePrimeagen/harpoon", branch = "harpoon2", - dependencies = { - "nvim-lua/plenary.nvim" + dependencies = { + "nvim-lua/plenary.nvim" }, - config = function() + config = function() local harpoon = require("harpoon") -- REQUIRED harpoon:setup()