diff options
Diffstat (limited to 'lua/plugins.lua')
| -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 be6d204..edd9dd6 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -27,10 +27,10 @@ require('packer').startup( use 'wbthomason/packer.nvim' -- nvim-lsp configuration - use 'neovim/nvim-lspconfig' + use {'neovim/nvim-lspconfig', event = 'VimEnter', config = [[require('config.lsp')]]} -- auto-completion engine - use 'hrsh7th/nvim-compe' + use { 'hrsh7th/nvim-compe', event = 'InsertEnter *', config = [[require('config.compe')]] } -- Python syntax highlighting and more if (vim.g.is_mac == 1) or (vim.g.is_win == 1) then @@ -271,7 +271,7 @@ require('packer').startup( end -- REPL for nvim - use 'hkupty/iron.nvim' + use {'hkupty/iron.nvim', config = [[require('config.iron')]]} -- Show register content use "tversteeg/registers.nvim" |
