Files
dotfiles/.config/nvim/lua/plugins/fugitive.lua
Felix Nehrke 24f7891460 Migrate vim to neovim (min v0.11)
Install newest vim-releases via appimage from github-page!
2025-08-10 17:12:01 +02:00

23 lines
687 B
Lua

return {
{
"tpope/vim-fugitive",
lazy = false,
keys = {
-- replaced by telescope
-- { "<Leader>gg", "<Cmd>Ggrep ", desc = "Git grep" },
{ "<Leader>gb", "<Cmd>G blame<CR>", desc = "Git blame" },
{ "<Leader>gll", "<Cmd>G log --graph --format='%h (%ar) %s :: %aN <%aE>'<CR>", desc = "Git blame" },
{ "<Leader>glx", "<Cmd>Gclog -- %<CR>" },
{ "<Leader>gl0", "<Cmd>0Gclog -- %<CR>" },
},
},
-- Github integration for :GBrowse
{ "tpope/vim-rhubarb" },
-- Gitea integration for :GBrowse
{ "borissov/fugitive-gitea" },
-- Gitlab integration for :GBrowse
{ "shumphrey/fugitive-gitlab.vim" },
-- Bitbucket integration for :GBrowse
{ "tommcdo/vim-fubitive" },
}