Add git blame keybind
This commit is contained in:
parent
85416a3d53
commit
98a4c8d4c1
1 changed files with 8 additions and 0 deletions
|
|
@ -139,6 +139,14 @@ end, { desc = "Live grep in current file" })
|
|||
keymap("n", "<leader>fml", function() fzf_lua.marks() end, { desc = "FZF: find marks list" })
|
||||
keymap("n", "<leader>fmp", function() fzf_lua.man_pages() end, { desc = "FZF: find available man pages" })
|
||||
keymap("n", "<leader>fds", function() fzf_lua.lsp_document_symbols() end, { desc = "Grep: Document symbols" })
|
||||
-- keymap("n", "<leader>fgb", function() fzf_lua.git_blame() end, { desc = "Grep: Document symbols" })
|
||||
keymap("n", "<leader>fgb", function()
|
||||
fzf_lua.git_blame({
|
||||
winopts = {
|
||||
preview = { hidden = "hidden" }
|
||||
}
|
||||
})
|
||||
end, { desc = "Grep: Document symbols" })
|
||||
keymap("n", "<leader>ft", function() fzf_lua.tabs() end, { desc = "Pick opened tabs" })
|
||||
|
||||
keymap("n", "<leader>fn", function()
|
||||
|
|
|
|||
Loading…
Reference in a new issue