summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/fugitive.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-09-24 17:24:59 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-09-24 17:24:59 -0400
commit4a971466fb039cce7951f57462240839939a9653 (patch)
tree93443683b6f1f6d9568e2702c05041154b081c14 /lua/ben/plugins/fugitive.lua
parent573c6404259f21f71bff1ba2bc5946e7c0785f15 (diff)
Simpler fugitive for push/pull
Diffstat (limited to 'lua/ben/plugins/fugitive.lua')
-rw-r--r--lua/ben/plugins/fugitive.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/ben/plugins/fugitive.lua b/lua/ben/plugins/fugitive.lua
index 4b0c520..e6cf21d 100644
--- a/lua/ben/plugins/fugitive.lua
+++ b/lua/ben/plugins/fugitive.lua
@@ -7,7 +7,7 @@ return {
{ "<leader>gd", "<cmd>G difftool<CR>" }, -- G.it D.iff
{ "<leader>gm", "<cmd>Gvdiffsplit!<CR>" }, -- G.it M.erge
{ "<leader>gc", "<cmd>G commit<CR>" }, -- G.it C.ommit
- { "<leader>gpu", "<cmd>G push<CR>" }, -- G.it P.ush U.pstream
- { "<leader>gpl", "<cmd>G pull<CR>" }, -- G.it P.ull L.atest
+ { "<leader>gu", "<cmd>G push<CR>" }, -- G.it push U.pstream
+ { "<leader>gp", "<cmd>G pull<CR>" }, -- G.it P.ull
},
}