26 lines
692 B
Lua
26 lines
692 B
Lua
local execute = vim.api.nvim_command
|
|
local fn = vim.fn
|
|
|
|
local pack_path = fn.stdpath("data") .. "/site/pack"
|
|
local fmt = string.format
|
|
|
|
function ensure (user, repo)
|
|
-- Ensures a given github.com/USER/REPO is cloned in the pack/packer/start directory.
|
|
local install_path = fmt("%s/packer/start/%s", pack_path, repo)
|
|
if fn.empty(fn.glob(install_path)) > 0 then
|
|
execute(fmt("!git clone https://github.com/%s/%s %s", user, repo, install_path))
|
|
execute(fmt("packadd %s", repo))
|
|
end
|
|
end
|
|
|
|
ensure("wbthomason", "packer.nvim")
|
|
ensure("Olical", "aniseed")
|
|
ensure("lewis6991", "impatient.nvim")
|
|
|
|
require("impatient")
|
|
|
|
vim.g["aniseed#env"] = {
|
|
module = "config.init",
|
|
compile = true
|
|
}
|
|
|