summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl')
-rw-r--r--fnl/aktersnurra.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/aktersnurra.fnl b/fnl/aktersnurra.fnl
index 43fdcbb..dfb4f50 100644
--- a/fnl/aktersnurra.fnl
+++ b/fnl/aktersnurra.fnl
@@ -4,7 +4,7 @@
path (.. (vim.fn.stdpath :config) :/fnl/plugins)]
(each [fname (vim.fs.dir path)]
(let [fname (fname:match "^(.*)%.fnl$")]
- (if (and (not= fname nil))
+ (if (not= fname nil)
(table.insert plugins (require (.. :plugins. fname))))))
(table.insert plugins (require :plugins.lsp))
plugins))