removed neogit

This commit is contained in:
Sven Vogel 2024-05-22 00:12:00 +02:00
parent 3e40a00cd3
commit c3fbaeab80
1 changed files with 24 additions and 1 deletions

View File

@ -1,6 +1,29 @@
return { return {
{ {
"sindrets/diffview.nvim", "sindrets/diffview.nvim",
opts = {}, opts = {
keymaps = {
file_panel = {
{
"n", "cc",
"<Cmd>Git commit <bar> wincmd J<CR>",
{ desc = "Commit staged changes" },
},
{
"n", "ca",
"<Cmd>Git commit --amend <bar> wincmd J<CR>",
{ desc = "Amend the last commit" },
},
{
"n", "c<space>",
":Git commit ",
{ desc = "Populate command line with \":Git commit \"" },
},
},
}
}
}, },
{
"tpope/vim-fugitive"
}
} }