diff options
author | Chris <[email protected]> | 2021-03-16 23:13:45 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-16 23:13:45 -0400 |
commit | 6141b0ac76f6d6b999188b64ee23c25216bb7691 (patch) | |
tree | 996fb74f3fe364799a1862f09a1d0f78572db400 /lua | |
parent | 7f8fb0135a8bf9fa2a67118f57110e130e91b4cf (diff) |
fix use issue
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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} |