2021-08-12 13:58:03 +02:00
|
|
|
local cmd = vim.cmd
|
|
|
|
|
|
|
|
cmd("packadd packer.nvim")
|
2021-07-19 02:49:27 +02:00
|
|
|
|
2021-07-17 13:14:52 +02:00
|
|
|
local present, packer = pcall(require, "packer")
|
|
|
|
|
|
|
|
if not present then
|
2021-07-19 02:49:27 +02:00
|
|
|
local packer_path = vim.fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim"
|
2021-07-15 17:46:45 +02:00
|
|
|
|
|
|
|
print("Cloning packer..")
|
|
|
|
-- remove the dir before cloning
|
|
|
|
vim.fn.delete(packer_path, "rf")
|
|
|
|
vim.fn.system(
|
|
|
|
{
|
|
|
|
"git",
|
|
|
|
"clone",
|
|
|
|
"https://github.com/wbthomason/packer.nvim",
|
|
|
|
"--depth",
|
|
|
|
"20",
|
|
|
|
packer_path
|
|
|
|
}
|
|
|
|
)
|
2021-07-17 13:14:52 +02:00
|
|
|
|
2021-08-12 13:58:03 +02:00
|
|
|
cmd("packadd packer.nvim")
|
2021-07-17 13:14:52 +02:00
|
|
|
present, packer = pcall(require, "packer")
|
|
|
|
|
|
|
|
if present then
|
2021-07-15 17:46:45 +02:00
|
|
|
print("Packer cloned successfully.")
|
|
|
|
else
|
|
|
|
error("Couldn't clone packer !\nPacker path: " .. packer_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return packer.init {
|
|
|
|
display = {
|
|
|
|
open_fn = function()
|
|
|
|
return require("packer.util").float {border = "single"}
|
2021-08-12 13:58:03 +02:00
|
|
|
end,
|
|
|
|
prompt_border = "single"
|
2021-07-15 17:46:45 +02:00
|
|
|
},
|
|
|
|
git = {
|
|
|
|
clone_timeout = 600 -- Timeout, in seconds, for git clones
|
2021-08-12 13:58:03 +02:00
|
|
|
},
|
|
|
|
auto_clean = true,
|
|
|
|
compile_on_sync = true
|
|
|
|
-- auto_reload_compiled = true
|
2021-07-15 17:46:45 +02:00
|
|
|
}
|