mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 12:12:13 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
return {
|
||||
"NeogitOrg/neogit",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim", -- required
|
||||
"nvim-telescope/telescope.nvim", -- optional
|
||||
"sindrets/diffview.nvim", -- optional
|
||||
"ibhagwan/fzf-lua", -- optional
|
||||
},
|
||||
config = function()
|
||||
local whichKey = require("which-key")
|
||||
local neogit = require("neogit")
|
||||
|
||||
neogit.setup({})
|
||||
|
||||
whichKey.add({
|
||||
{ "<leader>g", group = "Neogit", },
|
||||
{ "<leader>go", function() neogit.open() end, },
|
||||
})
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user