diff options
author | Squibid <me@zacharyscheiman.com> | 2023-04-29 12:19:13 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-04-29 12:19:13 -0400 |
commit | 344223afd55a93cea65501d223886c648ee9c054 (patch) | |
tree | c7c12c3e08e076d01827dd20f1aebe14dc2a804e | |
parent | 3c21d5b8e136f5fdfe62079521342f8b0ded0263 (diff) | |
download | dep-344223afd55a93cea65501d223886c648ee9c054.tar.gz dep-344223afd55a93cea65501d223886c648ee9c054.tar.bz2 dep-344223afd55a93cea65501d223886c648ee9c054.zip |
notifiy was in the wrong place
-rw-r--r-- | lua/dep.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/dep.lua b/lua/dep.lua index 386e739..b4bce62 100644 --- a/lua/dep.lua +++ b/lua/dep.lua @@ -638,9 +638,7 @@ local function print_list(cb) line = line + 1 end - vim.notify(string.format("Installed packages (%s):", #packages), 'info', { - title = 'Dep', - }) + print(string.format("Installed packages (%s):", #packages)) indent = 1 local loaded = {} |