diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:48:50 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:48:50 +0200 |
commit | 2b9cd52b56bfb6a76a92abb54510192472eabc24 (patch) | |
tree | df4cb503cfc944c9cfe4740dc70a09b04c5f18be /fnl/bootstrap.fnl | |
parent | ffc1dfc4fd0d6eb50b5a5ac9b598718a1f1070c4 (diff) |
fix(bootstrap): load packer and impatient
Diffstat (limited to 'fnl/bootstrap.fnl')
-rw-r--r-- | fnl/bootstrap.fnl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fnl/bootstrap.fnl b/fnl/bootstrap.fnl index 6d8ff81..89bd5df 100644 --- a/fnl/bootstrap.fnl +++ b/fnl/bootstrap.fnl @@ -8,8 +8,7 @@ (def- packer-path (.. (vim.fn.stdpath :data) :site/pack)) -(def- git-clone-url - ("!git clone --depth 1 https://github.com/%s/%s %s")) +(def- git-clone-url "!git clone --depth 1 https://github.com/%s/%s %s") (defn- execute [cmd] (vim.api.nvim_command cmd)) @@ -26,3 +25,6 @@ (ensure :wbthomason :packer.nvim) (ensure :Olical :aniseed) (ensure :lewis6991 :impatient.nvim) + +(config.packer) +(config.impatient) |