Hyprland-dotfiles/nvim/lua/modules/configs/ui/gitsigns.lua

24 lines
656 B
Lua
Raw Normal View History

2024-07-21 02:51:17 -04:00
return function()
local mapping = require("keymap.ui")
require("modules.utils").load_plugin("gitsigns", {
signs = {
add = { text = "" },
change = { text = "" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
untracked = { text = "" },
},
auto_attach = true,
on_attach = mapping.gitsigns,
signcolumn = true,
sign_priority = 6,
update_debounce = 100,
word_diff = false,
current_line_blame = true,
diff_opts = { internal = true },
watch_gitdir = { follow_files = true },
current_line_blame_opts = { delay = 1000, virt_text = true, virtual_text_pos = "eol" },
})
end