1
0
Fork 0

Added bootstrap

This commit is contained in:
Vivianne 2022-03-05 03:30:37 -08:00
parent 3ce6e836cf
commit 9859bdc9ce
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
local fn = vim.fn
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
packer_bootstrap = fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
-- TODO: Add in downloading of sqlite dll for Windows, here.
end
lsp_client_capabilities = vim.lsp.protocol.make_client_capabilities()
return require('packer').startup(function(use)