From eb03b36be0b26b8340b9a0f5ab40e416cb98e199 Mon Sep 17 00:00:00 2001 From: EvilMuffinHa Date: Tue, 11 Jul 2023 15:26:11 -0400 Subject: [PATCH] more nvim update --- nvim/lua/bootstrap.lua | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/nvim/lua/bootstrap.lua b/nvim/lua/bootstrap.lua index 56caadc..d4e166d 100644 --- a/nvim/lua/bootstrap.lua +++ b/nvim/lua/bootstrap.lua @@ -1,23 +1,23 @@ local fn = vim.fn -local is_bootstrawp = false +local is_bootstrap = false local bootstrap_output = '' local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim' if fn.empty(fn.glob(install_path)) > 0 then - bootstrap_output = fn.system({ - 'git', - 'clone', - '--depth', '1', - 'https://github.com/wbthomason/packer.nvim', - install_path - }) - is_bootstrap = true - vim.cmd 'packloadall' + bootstrap_output = fn.system({ + 'git', + 'clone', + '--depth', '1', + 'https://github.com/wbthomason/packer.nvim', + install_path + }) + is_bootstrap = true + vim.cmd 'packloadall' end return { - is_bootstrap = is_bootstrap, - bootstrap_output = bootstrap_output, + is_bootstrap = is_bootstrap, + bootstrap_output = bootstrap_output, }