lazy load more plugins!
This commit is contained in:
parent
cb3f7538e8
commit
6d98a11dfe
|
@ -104,12 +104,11 @@ return packer.startup(
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {"nvim-lua/plenary.nvim", event = "BufRead"}
|
||||||
|
use {"nvim-lua/popup.nvim", after = "plenary.nvim"}
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
requires = {
|
|
||||||
{"nvim-lua/popup.nvim"},
|
|
||||||
{"nvim-lua/plenary.nvim"}
|
|
||||||
},
|
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
config = function()
|
config = function()
|
||||||
require "plugins.telescope"
|
require "plugins.telescope"
|
||||||
|
@ -125,7 +124,7 @@ return packer.startup(
|
||||||
-- git stuff
|
-- git stuff
|
||||||
use {
|
use {
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
event = "BufRead",
|
after = "plenary.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require "plugins.gitsigns"
|
require "plugins.gitsigns"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue