Added "leap" package

This commit is contained in:
Nathan Justinian 2023-01-11 21:21:57 -05:00 committed by GitHub
parent 32744c3f66
commit db9a207ff3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -60,6 +60,14 @@ require('packer').startup(function(use)
-- Fuzzy Finder Algorithm which requires local dependencies to be built. Only load if `make` is available
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable 'make' == 1 }
-- User Defined
-- Leap to help quickly navigate
use 'ggandor/leap.nvim'
-- Add custom plugins to packer from ~/.config/nvim/lua/custom/plugins.lua
local has_plugins, plugins = pcall(require, 'custom.plugins')
if has_plugins then
@ -424,5 +432,10 @@ cmp.setup {
},
}
-- User Defined
-- Leap setup
require('leap').add_default_mappings()
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et