15 lines
251 B
Lua
15 lines
251 B
Lua
-- Symbols to use for git
|
|
return {
|
|
-- Change type
|
|
added = '✚',
|
|
modified = '●',
|
|
deleted = '✖',
|
|
renamed = '',
|
|
-- Status type
|
|
untracked = '',
|
|
ignored = '',
|
|
unstaged = '',
|
|
staged = '',
|
|
conflict = '',
|
|
}
|