Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 384 Bytes

readme.md

File metadata and controls

23 lines (16 loc) · 384 Bytes

pickers.nvim

Different telescope pickers

Installation & Usage

require('lazy').setup({
   "perryrh0dan/pickers.nvim'
})

Diff

Open a telescope picker with all changes between the current HEAD and the default branch.

Keymaps

vim.keymap.set('n', '<leader>gd', function()
        require('pickers').diff()
    end, { desc = "Search [G]it [D]iff" })