diff options
Diffstat (limited to 'fnl/bootstrap.fnl')
-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 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) |