summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 20:50:43 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 20:50:43 +0200
commit5e87e7281aab88b8142bf44cd29ded2b7817e753 (patch)
tree06f38717e7cb18b57e15a5d75f10dd2350d2514e
parent81d4b2af14f381f632c57a3138b0e8027c3ba732 (diff)
fix(bootstrap): move parenthesis
-rw-r--r--fnl/bootstrap.fnl4
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/bootstrap.fnl b/fnl/bootstrap.fnl
index 8ee3e0f..414b92a 100644
--- a/fnl/bootstrap.fnl
+++ b/fnl/bootstrap.fnl
@@ -13,13 +13,13 @@
(fmt "%s/packer/start/%s" packer-path repository))
(defn- ensure [user repository]
- (let [path (ensure-path packer-path repository)])
+ (let [path (ensure-path packer-path repository)]
(if (> (vim.fn.empty (vim.fn.glob path) 0))
(do
(execute (fmt git-clone-url user repository path))
(execute (fmt "packadd %s" repository))
true)
- false))
+ false)))
(defn run [] (let [is_bootstrapped (ensure :wbthomason :packer.nvim)]
(ensure :Olical :aniseed)