diff --git a/common/.config/nvim/lua/plugins/git.lua b/common/.config/nvim/lua/plugins/git.lua index 1c0101e..8b5174c 100644 --- a/common/.config/nvim/lua/plugins/git.lua +++ b/common/.config/nvim/lua/plugins/git.lua @@ -7,20 +7,19 @@ return { "sindrets/diffview.nvim", "nvim-telescope/telescope.nvim", }, - config = true, + config = function() + local neogit = require("neogit") + + neogit.setup({ + graph_style = "kitty", + process_spinner = true, + }) + end, keys = { { "gg", "Neogit", desc = "Git: Open Neogit", mode = { "n" } }, }, }, - -- Git Diffview - { - "sindrets/diffview.nvim", - keys = { - { "gD", "DiffviewOpen", desc = "Git: Diffview Project against index/staging", mode = { "n" } }, - }, - }, - -- Adds git related signs to the gutter, as well as utilities for managing changes { "lewis6991/gitsigns.nvim",