diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:02:14 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:02:14 +0200 |
commit | f65d898fe500211555290efe1c2409efe33043b9 (patch) | |
tree | efa04cd5ccb78055b7f9b89ff6f73e8332ba13a0 | |
parent | aff6d83d6626e9be675595c19852808d052ae5a4 (diff) |
fix(bootstrap): if statement
-rw-r--r-- | fnl/bootstrap.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/bootstrap.fnl b/fnl/bootstrap.fnl index 2496c13..b0b066d 100644 --- a/fnl/bootstrap.fnl +++ b/fnl/bootstrap.fnl @@ -18,8 +18,8 @@ (defn- ensure [user repository] (let [path (ensure-path packer-path repository)] (if (> (vim.fn.empty (vim.fn.glob path) 0)) - (install user repository path) - true))) + (install user repository path)) + true)) (defn run [] (let [is_bootstrapped (ensure :wbthomason :packer.nvim)] (ensure :Olical :aniseed) |