diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:13:33 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:13:33 +0200 |
commit | 5e5fac15095b4b2fb12c61e2b1049496b0c286ce (patch) | |
tree | 11a45a45e52d8bff03f5635e70c8a1384d7b8085 /bootstrap.lua | |
parent | a7a3e1e0de9d2ed94b655911e9aaf1b89e8990a5 (diff) |
Revert "fix(bootstrap): add bootstrap check"
This reverts commit b669753c7c1514e80cce44d7b403d829e465a602.
Diffstat (limited to 'bootstrap.lua')
-rw-r--r-- | bootstrap.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/bootstrap.lua b/bootstrap.lua index a0b557d..6147c84 100644 --- a/bootstrap.lua +++ b/bootstrap.lua @@ -3,7 +3,6 @@ local fn = vim.fn local fmt = string.format local execute = vim.api.nvim_command -local is_bootstrapped = false local function ensure(user, repository) local packer_path = fn.stdpath "data" .. "/site/pack" @@ -18,9 +17,6 @@ local function ensure(user, repository) ) ) execute(fmt("packadd %s", repository)) - if repository == "packer.nvim" then - is_bootstrapped = true - end end end @@ -28,7 +24,3 @@ end ensure("wbthomason", "packer.nvim") ensure("Olical", "aniseed") ensure("lewis6991", "impatient.nvim") - -if is_bootstrapped then - require("packer").sync() -end |