summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fnl/util.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/util.fnl b/fnl/util.fnl
index 5cc0367..4ee8f8e 100644
--- a/fnl/util.fnl
+++ b/fnl/util.fnl
@@ -7,5 +7,5 @@
(defn load-plugin [name]
(let [(ok? val-or-err) (pcall require name)]
(if ok?
- (val-or-err)
+ val-or-err
(vim.notify (.. "Could not load config: " val-or-err) vim.log.levels.WARN))))