mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-09-01 16:26:16 +02:00
more lazy loading
This commit is contained in:
parent
c1c8cd600c
commit
1dbb05ed5d
1 changed files with 3 additions and 2 deletions
|
@ -35,12 +35,12 @@ return require("packer").startup(function(use)
|
||||||
|
|
||||||
-- TODO refactor all of this (for now it works, but yes I know it could be wrapped in a simpler function)
|
-- TODO refactor all of this (for now it works, but yes I know it could be wrapped in a simpler function)
|
||||||
use {"neovim/nvim-lspconfig", event = "BufRead", opt = true}
|
use {"neovim/nvim-lspconfig", event = "BufRead", opt = true}
|
||||||
use {"glepnir/lspsaga.nvim", opt = true}
|
use {"glepnir/lspsaga.nvim", event = "BufRead", opt = true}
|
||||||
use {"kabouzeid/nvim-lspinstall", opt = true}
|
use {"kabouzeid/nvim-lspinstall", opt = true}
|
||||||
-- Telescope
|
-- Telescope
|
||||||
use {"nvim-lua/popup.nvim", opt = true}
|
use {"nvim-lua/popup.nvim", opt = true}
|
||||||
use {"nvim-lua/plenary.nvim", opt = true}
|
use {"nvim-lua/plenary.nvim", opt = true}
|
||||||
use {"nvim-telescope/telescope.nvim", opt = true}
|
use {"nvim-telescope/telescope.nvim", cmd = "Telescope", opt = true}
|
||||||
|
|
||||||
-- Autocomplete
|
-- Autocomplete
|
||||||
use {"hrsh7th/nvim-compe", event = "InsertEnter", opt = true}
|
use {"hrsh7th/nvim-compe", event = "InsertEnter", opt = true}
|
||||||
|
@ -68,6 +68,7 @@ return require("packer").startup(function(use)
|
||||||
-- Comments
|
-- Comments
|
||||||
use {
|
use {
|
||||||
"terrortylor/nvim-comment",
|
"terrortylor/nvim-comment",
|
||||||
|
cmd = "CommentToggle",
|
||||||
config = require_plugin("nvim-comment"),
|
config = require_plugin("nvim-comment"),
|
||||||
opt = true
|
opt = true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue