diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 00:25:51 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 00:25:51 +0200 |
commit | 40263320fa45f52741c55f5c6e78afbdaa7ee2e7 (patch) | |
tree | 3ced2f21bf294573b581320a6657a7d23807453e /fnl | |
parent | 250590f7723a449f70611deb2275ee05a463f8d2 (diff) |
fix(bootstrap): mv check of plugins back to install
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/init.fnl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fnl/init.fnl b/fnl/init.fnl index 4862b16..00e8fc0 100644 --- a/fnl/init.fnl +++ b/fnl/init.fnl @@ -3,4 +3,6 @@ (require :settings) (require :install) (if (> util.num-plugins 3) - (require :config)) + (require :config) + (vim.notify "Not loading config before plugins are downloaded" + vim.log.levels.DEBUG)) |