return { "lewis6991/gitsigns.nvim", dependencies = { "nvim-lua/plenary.nvim", { "purarue/gitsigns-yadm.nvim", opts = { shell_timeout_ms = 2000, }, }, }, event = { "BufReadPre", "BufNewFile" }, opts = { _on_attach_pre = function(_, callback) if vim.fn.executable "yadm" == 1 then require("gitsigns-yadm").yadm_signs(callback) else callback() end end, signs = { add = { text = "┃" }, change = { text = "┃" }, delete = { text = "_" }, topdelete = { text = "‾" }, changedelete = { text = "~" }, untracked = { text = "┆" }, -- add = { text = "+" }, -- change = { text = "│" }, -- delete = { text = "_" }, -- topdelete = { text = "‾" }, -- changedelete = { text = "~" }, -- untracked = { text = "┆" }, }, signs_staged = { add = { text = "┃" }, change = { text = "┃" }, delete = { text = "_" }, topdelete = { text = "‾" }, changedelete = { text = "~" }, untracked = { text = "┆" }, }, signs_staged_enable = true, signcolumn = true, -- Toggle with `:Gitsigns toggle_signs` numhl = false, -- Toggle with `:Gitsigns toggle_numhl` linehl = false, -- Toggle with `:Gitsigns toggle_linehl` word_diff = false, -- Toggle with `:Gitsigns toggle_word_diff` watch_gitdir = { interval = 1000, follow_files = true, }, attach_to_untracked = true, current_line_blame = true, -- Toggle with `:Gitsigns toggle_current_line_blame` current_line_blame_opts = { virt_text = true, virt_text_pos = "eol", -- 'eol' | 'overlay' | 'right_align' delay = 200, ignore_whitespace = false, }, current_line_blame_formatter = ", - ", sign_priority = 6, update_debounce = 100, status_formatter = nil, -- Use default max_file_length = 40000, -- Disable if file is longer than this (in lines) preview_config = { -- Options passed to nvim_open_win border = "single", style = "minimal", relative = "cursor", row = 0, col = 1, }, }, }