Added leap.nvim

This commit is contained in:
Michael Chalupiak
2025-08-24 22:51:17 -04:00
parent cf051a191f
commit 005f77cdbf
5 changed files with 30 additions and 14 deletions

View File

@@ -41,6 +41,8 @@ set('t', '<Esc>', '<C-\\><C-n>')
setnx('\'', '`', 'Goto mark with column')
setnx('`', '\'', 'Goto mark without column')
setnx('<leader>x', '<CMD>bd!<CR>', 'Close Current Buffer')
setnx('grR', tele.lsp_references, 'Search lsp references')
setnx('grI', tele.lsp_incoming_calls, 'Find incoming function calls')
setnx('grO', tele.lsp_outgoing_calls, 'Find outgoing function calls')
@@ -61,3 +63,7 @@ setnx('<leader>gr', tele.git_bcommits_range, 'List buffers git commits over visu
setnx('<leader>n', require('nabla').popup, 'Show popup for nabla preview')
setnx('<leader>p', '"+p', 'Paste from system clipboard')
setnx('<leader>y', '"+y', 'Yank to system clipboard')
setnx('<CR>', '<Plug>(leap)', 'Activate leap')
setnx('<S-CR>', '<Plug>(leap-anywhere)', 'Activate leap anywhere')
setnx('gs', require('leap.remote').action, 'Activate remote leap')