From 6141b0ac76f6d6b999188b64ee23c25216bb7691 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 16 Mar 2021 23:13:45 -0400 Subject: [PATCH] fix use issue --- lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 8f037618..b791e25e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -15,7 +15,7 @@ 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() +return require('packer').startup(function(use) -- Packer can manage itself as an optional plugin use {'wbthomason/packer.nvim', opt = true}