38 lines
856 B
Lua
38 lines
856 B
Lua
return {
|
|
'refractalize/oil-git-status.nvim',
|
|
dependencies = {
|
|
'stevearc/oil.nvim',
|
|
},
|
|
config = function()
|
|
require('oil-git-status').setup {
|
|
show_ignored = true, -- show files that match gitignore with !!
|
|
symbols = { -- customize the symbols that appear in the git status columns
|
|
index = {
|
|
['!'] = '!',
|
|
['?'] = '?',
|
|
['A'] = 'A',
|
|
['C'] = 'C',
|
|
['D'] = 'D',
|
|
['M'] = 'M',
|
|
['R'] = 'R',
|
|
['T'] = 'T',
|
|
['U'] = 'U',
|
|
[' '] = ' ',
|
|
},
|
|
working_tree = {
|
|
['!'] = '!',
|
|
['?'] = '?',
|
|
['A'] = 'A',
|
|
['C'] = 'C',
|
|
['D'] = 'D',
|
|
['M'] = 'M',
|
|
['R'] = 'R',
|
|
['T'] = 'T',
|
|
['U'] = 'U',
|
|
[' '] = ' ',
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|