LunarVim/lua/lvim/core/gitsigns.lua

84 lines
2.2 KiB
Lua
Raw Normal View History

2021-07-13 01:30:07 +02:00
local M = {}
2021-07-13 01:30:07 +02:00
M.config = function()
lvim.builtin.gitsigns = {
active = true,
on_config_done = nil,
opts = {
signs = {
add = {
hl = "GitSignsAdd",
text = lvim.icons.ui.BoldLineLeft,
numhl = "GitSignsAddNr",
linehl = "GitSignsAddLn",
},
change = {
hl = "GitSignsChange",
text = lvim.icons.ui.BoldLineLeft,
numhl = "GitSignsChangeNr",
linehl = "GitSignsChangeLn",
},
delete = {
hl = "GitSignsDelete",
text = lvim.icons.ui.Triangle,
numhl = "GitSignsDeleteNr",
linehl = "GitSignsDeleteLn",
},
topdelete = {
hl = "GitSignsDelete",
text = lvim.icons.ui.Triangle,
numhl = "GitSignsDeleteNr",
linehl = "GitSignsDeleteLn",
},
changedelete = {
hl = "GitSignsChange",
text = lvim.icons.ui.BoldLineLeft,
numhl = "GitSignsChangeNr",
linehl = "GitSignsChangeLn",
},
2021-07-13 01:30:07 +02:00
},
signcolumn = true,
numhl = false,
linehl = false,
2022-01-05 20:02:52 +01:00
word_diff = false,
watch_gitdir = {
interval = 1000,
follow_files = true,
},
2022-01-05 20:02:52 +01:00
attach_to_untracked = true,
current_line_blame = false, -- Toggle with `:Gitsigns toggle_current_line_blame`
current_line_blame_opts = {
virt_text = true,
virt_text_pos = "eol", -- 'eol' | 'overlay' | 'right_align'
delay = 1000,
ignore_whitespace = false,
},
current_line_blame_formatter = "<author>, <author_time:%Y-%m-%d> - <summary>",
sign_priority = 6,
status_formatter = nil, -- Use default
update_debounce = 200,
2022-01-05 20:02:52 +01:00
max_file_length = 40000,
preview_config = {
-- Options passed to nvim_open_win
border = "rounded",
style = "minimal",
relative = "cursor",
row = 0,
col = 1,
},
2022-04-30 17:43:50 +02:00
yadm = { enable = false },
2021-07-13 01:30:07 +02:00
},
}
end
M.setup = function()
2022-10-03 06:17:38 +02:00
local gitsigns = reload "gitsigns"
gitsigns.setup(lvim.builtin.gitsigns.opts)
if lvim.builtin.gitsigns.on_config_done then
lvim.builtin.gitsigns.on_config_done(gitsigns)
end
2021-07-13 01:30:07 +02:00
end
return M