29 lines
527 B
Lua
29 lines
527 B
Lua
return {
|
|
{
|
|
"lewis6991/gitsigns.nvim",
|
|
opts = {
|
|
signs = {
|
|
add = { text = "+" },
|
|
change = { text = "~" },
|
|
delete = { text = "_" },
|
|
topdelete = { text = "‾" },
|
|
changedelete = { text = "~" },
|
|
},
|
|
},
|
|
},
|
|
-- {
|
|
-- "kdheepak/lazygit.nvim",
|
|
-- lazy = false,
|
|
-- cmd = {
|
|
-- "LazyGit",
|
|
-- "LazyGitConfig",
|
|
-- "LazyGitCurrentFile",
|
|
-- "LazyGitFilter",
|
|
-- "LazyGitFilterCurrentFile",
|
|
-- },
|
|
-- keys = {
|
|
-- { "<leader>gs", "<cmd>LazyGit<cr>", desc = "LazyGit" },
|
|
-- },
|
|
-- },
|
|
}
|