From 3bb3989d391d9988338003342748530fcb8fc9cd Mon Sep 17 00:00:00 2001 From: Proctor Date: Mon, 3 Oct 2022 13:56:39 -0500 Subject: [PATCH] Let git pull rebase be taken care of by gitconfig --- nvim/.config/nvim/fnl/dotfiles/plugin/fugitive.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/fugitive.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/fugitive.fnl index 13e7f40..747ac4f 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/fugitive.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/fugitive.fnl @@ -4,5 +4,5 @@ core aniseed.core util dotfiles.util}}) -(nvim.ex.autocmd :FileType :fugitive :nmap :gp ":Git pull --rebase") +(nvim.ex.autocmd :FileType :fugitive :nmap :gp ":Git pull") (nvim.ex.autocmd :FileType :fugitive :nmap :gP (.. ":Git push origin " (nvim.fn.FugitiveHead) ""))