diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-05 22:49:25 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-05 22:49:25 +0200 |
commit | 0568242820c215f164ca4e8bc4be277dff07fc48 (patch) | |
tree | 76204f60b8f4900b9f6eb2fecf033a880ecdcda9 | |
parent | d13d74a010ce8354eb87cad090afa85c02487aa3 (diff) |
style(bootstrap): format
-rw-r--r-- | fnl/bootstrap.fnl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fnl/bootstrap.fnl b/fnl/bootstrap.fnl index 4434003..2665550 100644 --- a/fnl/bootstrap.fnl +++ b/fnl/bootstrap.fnl @@ -19,8 +19,9 @@ (defn- ensure [user repository] (let [path (ensure-path packer-path repository)]) (if (> (vim.fn.empty (vim.fn.glob path) 0)) - (execute (fmt git-clone-url user repository path)) - (execute (fmt "packadd %s" repository)))) + (do + (execute (fmt git-clone-url user repository path)) + (execute (fmt "packadd %s" repository))))) (ensure :wbthomason :packer.nvim) (ensure :Olical :aniseed) |