nvim/lua/plugins/neogit.lua
Evie Litherland-Smith d309375d03 Don't auto-install treesitter parsers
Make neogit faster to get to by reducing keymaps
2023-05-18 09:15:39 +01:00

20 lines
580 B
Lua

return {
"TimUntersberger/neogit",
dependencies = {
"nvim-lua/plenary.nvim",
"sindrets/diffview.nvim",
},
cmd = "Neogit",
init = function() vim.keymap.set("n", "<leader>g", "<cmd>Neogit<CR>") end,
config = true,
opts = {
disable_commit_confirmation = true,
disable_builtin_notifications = true,
-- kind = "floating",
-- commit_popup = { kind = "floating" },
-- preview_buffer = { kind = "floating" },
-- popup = { kind = "floating" },
integrations = { diffview = true },
},
}