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.
79 lines
2.3 KiB
79 lines
2.3 KiB
local M = { |
|
"lewis6991/gitsigns.nvim", |
|
event = "BufEnter", |
|
cmd = "Gitsigns", |
|
} |
|
M.config = function() |
|
local icons = require "user.icons" |
|
|
|
local wk = require "which-key" |
|
wk.register { |
|
["<leader>gj"] = { "<cmd>lua require 'gitsigns'.next_hunk({navigation_message = false})<cr>", "Next Hunk" }, |
|
["<leader>gk"] = { "<cmd>lua require 'gitsigns'.prev_hunk({navigation_message = false})<cr>", "Prev Hunk" }, |
|
["<leader>gp"] = { "<cmd>lua require 'gitsigns'.preview_hunk()<cr>", "Preview Hunk" }, |
|
["<leader>gr"] = { "<cmd>lua require 'gitsigns'.reset_hunk()<cr>", "Reset Hunk" }, |
|
["<leader>gl"] = { "<cmd>lua require 'gitsigns'.blame_line()<cr>", "Blame" }, |
|
["<leader>gR"] = { "<cmd>lua require 'gitsigns'.reset_buffer()<cr>", "Reset Buffer" }, |
|
["<leader>gs"] = { "<cmd>lua require 'gitsigns'.stage_hunk()<cr>", "Stage Hunk" }, |
|
["<leader>gu"] = { |
|
"<cmd>lua require 'gitsigns'.undo_stage_hunk()<cr>", |
|
"Undo Stage Hunk", |
|
}, |
|
["<leader>gd"] = { |
|
"<cmd>Gitsigns diffthis HEAD<cr>", |
|
"Git Diff", |
|
}, |
|
} |
|
|
|
require("gitsigns").setup { |
|
signs = { |
|
add = { |
|
hl = "GitSignsAdd", |
|
text = icons.ui.BoldLineMiddle, |
|
numhl = "GitSignsAddNr", |
|
linehl = "GitSignsAddLn", |
|
}, |
|
change = { |
|
hl = "GitSignsChange", |
|
text = icons.ui.BoldLineDashedMiddle, |
|
numhl = "GitSignsChangeNr", |
|
linehl = "GitSignsChangeLn", |
|
}, |
|
delete = { |
|
hl = "GitSignsDelete", |
|
text = icons.ui.TriangleShortArrowRight, |
|
numhl = "GitSignsDeleteNr", |
|
linehl = "GitSignsDeleteLn", |
|
}, |
|
topdelete = { |
|
hl = "GitSignsDelete", |
|
text = icons.ui.TriangleShortArrowRight, |
|
numhl = "GitSignsDeleteNr", |
|
linehl = "GitSignsDeleteLn", |
|
}, |
|
changedelete = { |
|
hl = "GitSignsChange", |
|
text = icons.ui.BoldLineMiddle, |
|
numhl = "GitSignsChangeNr", |
|
linehl = "GitSignsChangeLn", |
|
}, |
|
}, |
|
watch_gitdir = { |
|
interval = 1000, |
|
follow_files = true, |
|
}, |
|
attach_to_untracked = true, |
|
current_line_blame_formatter = "<author>, <author_time:%Y-%m-%d> - <summary>", |
|
update_debounce = 200, |
|
max_file_length = 40000, |
|
preview_config = { |
|
border = "rounded", |
|
style = "minimal", |
|
relative = "cursor", |
|
row = 0, |
|
col = 1, |
|
}, |
|
} |
|
end |
|
|
|
return M
|
|
|