diff options
| author | christianchiarulli <[email protected]> | 2021-06-28 11:58:30 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-06-28 11:58:30 -0400 | 
| commit | 89c1ad5e2ec174919c1e6b035566bd41c2a68bdc (patch) | |
| tree | 413ac4e7b3eced18ea058d0c3d2d949fe74b9ee8 | |
| parent | 832b55fa23ae1e49bd805b6e0e9f5d20b08f46a0 (diff) | |
more lazyload
| -rw-r--r-- | lua/plugins.lua | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 0f7d233c..d33d13c2 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -36,8 +36,8 @@ 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 {"glepnir/lspsaga.nvim", event = "BufRead"} +    use {"kabouzeid/nvim-lspinstall", event = "BufRead"}      -- Telescope      use {"nvim-lua/popup.nvim"}      use {"nvim-lua/plenary.nvim"} @@ -49,7 +49,7 @@ return require("packer").startup(function(use)          event = "InsertEnter",          config = function()              require("lv-compe").config() -        end, +        end      }      use {"hrsh7th/vim-vsnip", event = "InsertCharPre"} | 
