2020-08-06 19:45:40 +00:00
|
|
|
let g:vim_config_root = expand('<sfile>:p:h')
|
|
|
|
let $VIM_ROOT = g:vim_config_root
|
|
|
|
|
2021-05-08 17:31:04 +00:00
|
|
|
lua << EOF
|
|
|
|
local pack_path = vim.fn.stdpath("data") .. "/site/pack"
|
|
|
|
|
|
|
|
function ensure(user, repo)
|
|
|
|
-- Ensures a given github.com/USER/REPO is cloned in the pack/packer/start directory.
|
|
|
|
local install_path = string.format("%s/packer/start/%s", pack_path, repo, repo)
|
|
|
|
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
|
|
|
vim.api.nvim_command(string.format("!git clone https://github.com/%s/%s %s", user, repo, install_path))
|
|
|
|
vim.api.nvim_command(string.format("packadd %s", repo))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Bootstrap essential plugins required for installing and loading the rest.
|
|
|
|
ensure("wbthomason", "packer.nvim")
|
|
|
|
ensure("Olical", "aniseed")
|
|
|
|
|
|
|
|
vim.g["aniseed#env"] = { compile = true }
|
|
|
|
EOF
|
|
|
|
|