dotfiles update

This commit is contained in:
2023-08-29 17:34:37 -04:00
parent bbdfc9bae4
commit e02f6ef322
3 changed files with 14 additions and 13 deletions
+11 -11
View File
@@ -6,18 +6,18 @@ 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,
}