mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-14 11:24:43 +02:00
lazyload telescope (#564)
* lazyload telescope * Update plugins.lua Co-authored-by: Christian Chiarulli <chris.machine@pm.me>
This commit is contained in:
parent
9e7ad60747
commit
5ecdae981f
2 changed files with 6 additions and 3 deletions
|
@ -22,8 +22,11 @@ return require("packer").startup(function(use)
|
|||
-- Telescope
|
||||
use {"nvim-lua/popup.nvim"}
|
||||
use {"nvim-lua/plenary.nvim"}
|
||||
use {"nvim-telescope/telescope.nvim"}
|
||||
|
||||
use {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
config = [[require('lv-telescope')]],
|
||||
cmd = "Telescope"
|
||||
}
|
||||
-- Autocomplete
|
||||
use {
|
||||
"hrsh7th/nvim-compe",
|
||||
|
@ -290,6 +293,7 @@ return require("packer").startup(function(use)
|
|||
use {
|
||||
"nvim-telescope/telescope-project.nvim",
|
||||
event = "BufRead",
|
||||
after = "telescope.nvim",
|
||||
disable = not O.plugin.telescope_project.active
|
||||
}
|
||||
-- Sane gx for netrw_gx bug
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue