| 12345678910111213141516 |
- return {
- "NeogitOrg/neogit",
- dependencies = {
- "nvim-lua/plenary.nvim", -- required
- "sindrets/diffview.nvim", -- optional - Diff integration
- -- Only one of these is needed, not both.
- "nvim-telescope/telescope.nvim", -- optional
- "ibhagwan/fzf-lua", -- optional
- },
- config = function()
- -- init.lua
- local neogit = require('neogit')
- neogit.setup {}
- end,
- }
|