Add leap.nvim

This commit is contained in:
doyle 2023-10-14 11:12:52 +11:00
parent e234c42507
commit 8c571636bc

View File

@ -26,6 +26,7 @@ call plug#begin(stdpath('config') . '/plugged')
" Lua cache to speed up load times " Lua cache to speed up load times
Plug 'https://github.com/lewis6991/impatient.nvim' Plug 'https://github.com/lewis6991/impatient.nvim'
Plug 'https://github.com/ggandor/leap.nvim'
" lsp-zero begin " lsp-zero begin
" LSP Support " LSP Support
@ -54,12 +55,14 @@ call plug#end()
" ============================================================================== " ==============================================================================
lua <<EOF lua <<EOF
require('impatient') require('impatient')
local leap = require('leap')
vim.keymap.set({'n', 'x', 'o'}, 'f', '<Plug>(leap-forward-to)')
vim.keymap.set({'n', 'x', 'o'}, 'F', '<Plug>(leap-backward-to)')
-- LSP Setup -- LSP Setup
-- =========================================================================== -- ===========================================================================
local lsp = require('lsp-zero') local lsp = require('lsp-zero')
local devenver_root = vim.fn.getenv('devenver_root') local devenver_root = vim.fn.getenv('devenver_root')
local clang_format_fallback_file = devenver_root .. '/_clang-format'
lsp.preset('recommended') lsp.preset('recommended')
lsp.configure('clangd', { lsp.configure('clangd', {
cmd = { cmd = {
@ -72,7 +75,6 @@ lua <<EOF
"--clang-tidy", "--clang-tidy",
"--header-insertion=iwyu", "--header-insertion=iwyu",
"--header-insertion-decorators", "--header-insertion-decorators",
"--fallback-style=" .. clang_format_fallback_file,
} }
}) })