local M = {}
|
|
|
|
M.install = { src = "https://github.com/lewis6991/gitsigns.nvim" }
|
|
|
|
M.setup = function()
|
|
require("gitsigns").setup({
|
|
current_line_blame = true,
|
|
current_line_blame_opts = {
|
|
virt_text = true,
|
|
virt_text_pos = "eol",
|
|
delay = 0,
|
|
ignore_whitespace = false,
|
|
virt_text_priority = 100,
|
|
},
|
|
current_line_blame_formatter = "<author>, <author_time:%R> - <summary>",
|
|
})
|
|
end
|
|
|
|
return M
|