diff options
author | Chris <[email protected]> | 2021-03-19 01:46:18 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-19 01:46:18 -0400 |
commit | 7c869fc4ff42a33150fcb5730f371d1e0cb68e51 (patch) | |
tree | 3a1ddfa0132ddb19c991a8334359543e03a4f0c9 /lua/plugins.lua | |
parent | e66addc568dbc7026d0a923948a52280daeae7a4 (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 8a9e74c8..61a2f086 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -3,7 +3,7 @@ local execute = vim.api.nvim_command local fn = vim.fn -local install_path = fn.stdpath('data') .. '/site/pack/packer/opt/packer.nvim' +local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim' if fn.empty(fn.glob(install_path)) > 0 then execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path) @@ -14,7 +14,7 @@ vim.cmd 'autocmd BufWritePost plugins.lua PackerCompile' -- Auto compile when th return require('packer').startup(function(use) -- Packer can manage itself as an optional plugin - use {'wbthomason/packer.nvim', opt = true} + use 'wbthomason/packer.nvim' -- Information use 'nanotee/nvim-lua-guide' |