Name change lspinstall to nvim-lspinstall in lazy loader (#54)

On a clean install, packer compiles down to:

```lua
  ["nvim-lspinstall"] = {
    loaded = true,
    path = "..."
  },
```

rather than 

```lua
  ["nvim-lspinstall"] = {
    loaded = true,
    path = "..."
  },
```

without this change, I get a (cosmetic) error on every startup like this:

```
Error: attempted to load lspinstall which is not present in plugins table!                                                                                                                                                                                                                  
Error in packer_compiled: ...m/site/pack/packer/start/packer.nvim/lua/packer/load.lua:13: Error: attempted to load lspinstall which is not present in plugins table!                                                                                                                        
Please check your config for correctness
```
```
neovim_0_5
Matt Bailey 3 years ago committed by GitHub
parent e36809759b
commit d771df0fa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ if packer_plugins ~= nil then -- packer install
["guihua.lua"] = "ray-x/guihua.lua"
}
if _NgConfigValues.lspinstall == true then
lazy_plugins["lspinstall"] = "kabouzeid/nvim-lspinstall"
lazy_plugins["nvim-lspinstall"] = "kabouzeid/nvim-lspinstall"
end
-- packer installed

Loading…
Cancel
Save