mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
21 lines
398 B
Lua
21 lines
398 B
Lua
-- An interactive and powerful Git interface for Neovim
|
|
-- https://github.com/NeogitOrg/neogit
|
|
return {
|
|
"NeogitOrg/neogit",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"sindrets/diffview.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>gn",
|
|
function()
|
|
require("neogit").open()
|
|
end,
|
|
desc = "Neogit",
|
|
},
|
|
},
|
|
config = true,
|
|
}
|