|
|
|
@ -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
|
|
|
|
|