Added bootstrap
This commit is contained in:
parent
3ce6e836cf
commit
9859bdc9ce
1 changed files with 8 additions and 0 deletions
|
@ -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()
|
lsp_client_capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||||
|
|
||||||
return require('packer').startup(function(use)
|
return require('packer').startup(function(use)
|
||||||
|
|
Loading…
Reference in a new issue