feat: add nvimdots
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user