diff options
| -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 c62867c5..6f96990f 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -1,3 +1,5 @@ +vim.cmd [[packadd packer.nvim]] +  local execute = vim.api.nvim_command  local fn = vim.fn @@ -8,8 +10,6 @@ if fn.empty(fn.glob(install_path)) > 0 then      execute 'packadd packer.nvim'  end -vim.cmd [[packadd packer.nvim]] -  vim.cmd 'autocmd BufWritePost plugins.lua PackerCompile' -- Auto compile when there are changes in plugins.lua  return require('packer').startup(function(use) | 
