summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-07-10 13:27:52 -0400
committerChris <[email protected]>2021-07-10 13:27:52 -0400
commitbec8e77b470464cf08a09ab0882b61ef27fb6c10 (patch)
treee4a8bb7eabda548ea0c5b5bd85de17502d638283 /lua/plugins.lua
parent076de3fe2f0a9d8b11472cacf03de03c7a5adef8 (diff)
refactor lspinstall
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index d1f52074..d476f01c 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -29,7 +29,14 @@ 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 { "kabouzeid/nvim-lspinstall", event = "VimEnter" }
+ use {
+ "kabouzeid/nvim-lspinstall",
+ event = "VimEnter",
+ config = function()
+ require("lspinstall").setup()
+ end,
+ }
+
use { "nvim-lua/popup.nvim" }
use { "nvim-lua/plenary.nvim" }
use { "tjdevries/astronauta.nvim" }