diff options
| author | rebuilt <[email protected]> | 2021-07-04 16:27:25 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-04 10:27:25 -0400 | 
| commit | c8c29aa03cf784fdb8e3c0da94c87f8c073b7ddd (patch) | |
| tree | 0b1ed3e414645a55989defe074d67ff14122ce46 | |
| parent | bf41c5630aa471b600b0d9082b085d9915a25ea6 (diff) | |
lazy load lspinstall (#654)
| -rw-r--r-- | lua/plugins.lua | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 4f4d8a85..c3e25606 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -34,7 +34,9 @@ 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)      use {"neovim/nvim-lspconfig"}      use {"glepnir/lspsaga.nvim"} -    use {"kabouzeid/nvim-lspinstall"} +    use {"kabouzeid/nvim-lspinstall",  +        cmd = "LspInstall", +    }      -- Telescope      use {"nvim-lua/popup.nvim"}      use {"nvim-lua/plenary.nvim"} | 
