mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
52 lines
1.5 KiB
Lua
52 lines
1.5 KiB
Lua
-- not even used, but epic. stores the path to the root config directory.
|
|
local vim_config_root = vim.fn.expand("<sfile>:p:h")
|
|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
|
|
function ensure(user, repo, branch, commit)
|
|
-- Ensures a given github.com/USER/REPO is cloned in the lazy/packer/start directory.
|
|
local install_path = vim.fn.stdpath("data") .. "/lazy/" .. repo
|
|
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
|
vim.fn.system({"git", "clone", "--depth", "1", "--branch", branch, "https://github.com/" .. user .. "/" .. repo, install_path})
|
|
if commit ~= nil then
|
|
vim.fn.system({"git", "--git-dir", install_path .. "/.git", "reset", "--hard", commit})
|
|
end
|
|
end
|
|
vim.opt.rtp:prepend(install_path)
|
|
end
|
|
|
|
-- Bootstrap essential plugins required for installing and loading the rest.
|
|
--ensure("wbthomason", "packer.nvim", "master")
|
|
--ensure("Olical", "aniseed", "master")
|
|
ensure("Olical", "nfnl", "v1.0.0")
|
|
|
|
require('nfnl')['setup']()
|
|
--require('nfnl.api')['compile-all-files']()
|
|
|
|
require("main")
|
|
|
|
|
|
-- ensure("lewis6991", "impatient.nvim", "main")
|
|
|
|
-- require("impatient")
|
|
|
|
|
|
-- vim.g["aniseed#env"] = {
|
|
-- compile = true
|
|
-- }
|
|
--require("aniseed.env").init({compile = true})
|
|
|
|
|
|
-- vim.cmd ("source "..vim_config_root.."/amulet.vim")
|