You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
624 B
33 lines
624 B
return { |
|
|
|
-- Adds git related signs to the gutter/fringe |
|
{ |
|
"lewis6991/gitsigns.nvim", |
|
opts = { |
|
-- See `:help gitsigns.txt` |
|
signs = { |
|
add = { text = "█" }, |
|
change = { text = "█" }, |
|
delete = { text = "█" }, |
|
topdelete = { text = "█" }, |
|
changedelete = { text = "█" }, |
|
untracked = { text = "┆" }, |
|
}, |
|
}, |
|
}, |
|
|
|
-- Magit clone |
|
{ |
|
"NeogitOrg/neogit", |
|
cmd = "Neogit", -- defer |
|
lazy = true, |
|
dependencies = { |
|
"nvim-lua/plenary.nvim", |
|
"nvim-telescope/telescope.nvim", |
|
|
|
"sindrets/diffview.nvim", -- diff integration |
|
}, |
|
opts = {}, |
|
}, |
|
|
|
}
|
|
|