summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-06 00:12:08 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-06 00:12:08 +0100
commit3f66b63f35457f4d19f7aec49ce4bae985fd4d4b (patch)
treee6dc7d08224607773aa166d87634d73692a9cd8e
parent1183cda31a964aac838420ceef6de54c542e4ea7 (diff)
Remove check for init for plugins
-rw-r--r--fnl/aktersnurra.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/aktersnurra.fnl b/fnl/aktersnurra.fnl
index adf6598..43fdcbb 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) (not= fname :icons))
+ (if (and (not= fname nil))
(table.insert plugins (require (.. :plugins. fname))))))
(table.insert plugins (require :plugins.lsp))
plugins))