From 3df9c03eb5b7dc5711225772e9274847d2e444f3 Mon Sep 17 00:00:00 2001 From: Rik034 Date: Fri, 9 Sep 2022 11:07:48 +0200 Subject: [PATCH] Fixed notify_once() call --- lua/core/utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/utils.lua b/lua/core/utils.lua index 56e64a4..425fd74 100644 --- a/lua/core/utils.lua +++ b/lua/core/utils.lua @@ -193,7 +193,7 @@ M.packer_sync = function(...) local plugins = M.load_config().plugins local old_style_options = plugins.user or plugins.override or plugins.remove if old_style_options then - vim.notify_once({ "NvChad: This plugin syntax is deprecated, use new style config." }, "Error") + vim.notify_once("NvChad: This plugin syntax is deprecated, use new style config.", "Error") end else error "Packer could not be loaded!"