mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 06:27:14 +01:00
34 lines
667 B
Lua
34 lines
667 B
Lua
return {
|
|
{
|
|
'NeogitOrg/neogit',
|
|
lazy = false,
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'sindrets/diffview.nvim',
|
|
'folke/snacks.nvim',
|
|
},
|
|
event = 'User InGitRepo',
|
|
opts = {
|
|
graph_style = 'unicode',
|
|
kind = 'vsplit',
|
|
},
|
|
keys = {
|
|
{ '<leader>gs', ':Neogit<CR>', { desc = '[g]it [s]tatus' } },
|
|
},
|
|
},
|
|
{
|
|
'sindrets/diffview.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
diff_args = { '--ignore-all-space' },
|
|
},
|
|
},
|
|
{
|
|
'lewis6991/gitsigns.nvim',
|
|
event = { 'BufReadPre', 'BufNewFile' },
|
|
opts = {
|
|
current_line_blame = false,
|
|
},
|
|
},
|
|
}
|