mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
12 lines
371 B
Lua
12 lines
371 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 },
|
|
},
|
|
}
|