mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
22 lines
684 B
Lua
22 lines
684 B
Lua
local icons = require('config.icons').diff_gutter
|
|
|
|
return {
|
|
signs = {
|
|
add = { text = icons.add },
|
|
delete = { text = icons.delete },
|
|
change = { text = icons.change },
|
|
untracked = { text = icons.untracked },
|
|
topdelete = { text = icons.delete },
|
|
changedelete = { text = icons.change },
|
|
},
|
|
signs_staged = {
|
|
add = { text = icons.add },
|
|
delete = { text = icons.delete },
|
|
change = { text = icons.change },
|
|
topdelete = { text = icons.delete },
|
|
changedelete = { text = icons.change },
|
|
},
|
|
diff_opts = {
|
|
internal = true
|
|
}
|
|
}
|