local M = { "lewis6991/gitsigns.nvim" }

M.event = { "BufReadPre", "BufNewFile" }

local icons = require('config.icons')

M.opts = {
    signs = {
        add          = { text = icons.git.LineAdded },
        change       = { text = icons.git.LineModified },
        delete       = { text = icons.git.LineRemoved },
        topdelete    = { text = icons.git.LineRemoved },
        changedelete = { text = icons.git.FileRenamed },
        untracked    = { text = icons.git.FileIgnored },
    },
}

return M