Re-add vim-fugitive

This reverts commit 75f3877a13.
This commit is contained in:
Oliver Davies 2024-04-17 20:11:56 +01:00
parent 16f47fa41e
commit 942e334cb5
3 changed files with 33 additions and 9 deletions

23
after/plugin/fugitive.lua Normal file
View file

@ -0,0 +1,23 @@
vim.keymap.set("n", "<leader>gc", "<cmd>Git commit<cr><C-w>K")
vim.keymap.set("n", "<leader>gs", "<cmd>Git<cr><C-w>K")
vim.api.nvim_create_autocmd("BufWinEnter", {
pattern = "*",
callback = function()
if vim.bo.ft ~= "fugitive" then
return
end
local bufnr = vim.api.nvim_get_current_buf()
local opts = { buffer = bufnr, remap = false }
vim.keymap.set("n", "<leader>p", function()
vim.cmd.Git "push"
end, opts)
vim.keymap.set("n", "<leader>P", function()
vim.cmd.Git { "pull", "--rebase" }
end, opts)
end,
})