11 lines
291 B
Lua
11 lines
291 B
Lua
|
require("gitsigns").setup(astronvim.user_plugin_opts("plugins.gitsigns", {
|
||
|
signs = {
|
||
|
add = { text = "▎" },
|
||
|
change = { text = "▎" },
|
||
|
delete = { text = "▎" },
|
||
|
topdelete = { text = "契" },
|
||
|
changedelete = { text = "▎" },
|
||
|
untracked = { text = "▎" },
|
||
|
},
|
||
|
}))
|