mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
649 B
25 lines
649 B
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,
|
|
}
|