summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 21:06:49 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 21:06:49 +0200
commit250825c55823f30bc95a59454a2e1aeb278b5da4 (patch)
treee93d6883cd12291ecdcd6a55098148d959feca76
parent77dc70369080389ddd783e8d847b18380844cb5b (diff)
Revert "fix(bootstrap): remove lua impl"
This reverts commit caf3656d5bc4d9f832791b424f5001828eaf4c49.
-rw-r--r--bootstrap.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/bootstrap.lua b/bootstrap.lua
new file mode 100644
index 0000000..6147c84
--- /dev/null
+++ b/bootstrap.lua
@@ -0,0 +1,26 @@
+-- Bootstrap nvim with essential plugins.
+
+local fn = vim.fn
+local fmt = string.format
+local execute = vim.api.nvim_command
+
+local function ensure(user, repository)
+ local packer_path = fn.stdpath "data" .. "/site/pack"
+ local ensure_path = fmt("%s/packer/start/%s", packer_path, repository)
+ if fn.empty(fn.glob(ensure_path)) > 0 then
+ execute(
+ fmt(
+ "!git clone --depth 1 https://github.com/%s/%s %s",
+ user,
+ repository,
+ ensure_path
+ )
+ )
+ execute(fmt("packadd %s", repository))
+ end
+end
+
+-- Bootstrap install essential modules if not present
+ensure("wbthomason", "packer.nvim")
+ensure("Olical", "aniseed")
+ensure("lewis6991", "impatient.nvim")