summaryrefslogtreecommitdiff
path: root/fnl/aktersnurra.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-06 00:15:05 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-06 00:15:05 +0100
commitf005ce541335fb936a85e9997513e94067ef07ae (patch)
treeeed00a537ffa15a8edf80203c2e1ab9e3ba003d7 /fnl/aktersnurra.fnl
parent3f66b63f35457f4d19f7aec49ce4bae985fd4d4b (diff)
Remove and conditional
Diffstat (limited to 'fnl/aktersnurra.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))