mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-11 08:20:50 -07:00
24 lines
649 B
Lua
24 lines
649 B
Lua
return {
|
|
signs = {
|
|
add = { text = "│" },
|
|
change = { text = "│" },
|
|
delete = { text = "" },
|
|
topdelete = { text = "‾" },
|
|
changedelete = { text = "~" },
|
|
untracked = { text = "│" },
|
|
},
|
|
--
|
|
-- on_attach = function(bufnr)
|
|
-- local gs = package.loaded.gitsigns
|
|
--
|
|
-- local function opts(desc)
|
|
-- return { buffer = bufnr, desc = desc }
|
|
-- end
|
|
--
|
|
-- local map = vim.keymap.set
|
|
--
|
|
-- map("n", "<leader>rh", gs.reset_hunk, opts "Reset Hunk")
|
|
-- map("n", "<leader>ph", gs.preview_hunk, opts "Preview Hunk")
|
|
-- map("n", "<leader>gb", gs.blame_line, opts "Blame Line")
|
|
-- end,
|
|
}
|