diff options
author | christianchiarulli <[email protected]> | 2021-07-08 18:48:02 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-08 18:48:02 -0400 |
commit | 2b864e8517ac4702df1a7ebf70232f332666aa04 (patch) | |
tree | 687a24ffce47264a59564496581429d4850e9afc /lua/plugins.lua | |
parent | 354360400f365f34e01ee7bd7368f23f7f26ca85 (diff) |
update
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 5cb116f8..324b128b 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -28,7 +28,7 @@ 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 = "BufRead" } + use { "kabouzeid/nvim-lspinstall", event = "VimEnter" } -- Telescope use { "nvim-lua/popup.nvim" } use { "nvim-lua/plenary.nvim" } @@ -52,7 +52,7 @@ return require("packer").startup(function(use) use { "rafamadriz/friendly-snippets", event = "InsertEnter" } -- Treesitter - use { "nvim-treesitter/nvim-treesitter" } -- ,run = ":silent TSUpdate" } + use { "nvim-treesitter/nvim-treesitter", run = ":silent TSUpdate" } -- Neoformat use { |