git.lua 379 B

12345678910111213141516
  1. return {
  2. "NeogitOrg/neogit",
  3. dependencies = {
  4. "nvim-lua/plenary.nvim", -- required
  5. "sindrets/diffview.nvim", -- optional - Diff integration
  6. -- Only one of these is needed, not both.
  7. "nvim-telescope/telescope.nvim", -- optional
  8. "ibhagwan/fzf-lua", -- optional
  9. },
  10. config = function()
  11. -- init.lua
  12. local neogit = require('neogit')
  13. neogit.setup {}
  14. end,
  15. }