diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-10 23:42:30 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-10 23:42:30 +0200 |
commit | fe73b42ee804bce78e09d419d4996703644702d2 (patch) | |
tree | d567bf67bea9259baf8f9e0b218672e33c7eb0bb | |
parent | f5c7d68ca36f3ecd06b02da31283612bd7bc5f56 (diff) |
refactor(init): move settings before install
-rw-r--r-- | fnl/init.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/init.fnl b/fnl/init.fnl index 7f5089b..bd91031 100644 --- a/fnl/init.fnl +++ b/fnl/init.fnl @@ -1,5 +1,5 @@ ;; Install, load settings, and load plugin configs. (module init - {require {_ install - _ settings + {require {_ settings + _ install _ config}}) |