summaryrefslogtreecommitdiff
path: root/fnl/util/load.fnl
diff options
context:
space:
mode:
authoraktersnurra <gustaf@gustafrydholm.xyz>2026-04-16 15:10:52 +0200
committeraktersnurra <gustaf@gustafrydholm.xyz>2026-04-17 00:02:28 +0200
commit99a7ff44cdf70d028ef6aab26224f26f69ee528d (patch)
tree3bac13281fe000f0cc9a1823b6ccac856b0acf88 /fnl/util/load.fnl
parent83a7f3505a441f1c152229d50a3d6011951a82fc (diff)
Add fff and other nice things such as macrosHEADmaster
Diffstat (limited to 'fnl/util/load.fnl')
-rw-r--r--fnl/util/load.fnl8
1 files changed, 0 insertions, 8 deletions
diff --git a/fnl/util/load.fnl b/fnl/util/load.fnl
deleted file mode 100644
index afc6cf1..0000000
--- a/fnl/util/load.fnl
+++ /dev/null
@@ -1,8 +0,0 @@
-;; Load file with function
-
-(λ apply-to-files [path f]
- (each [fname type (vim.fs.dir (.. (vim.fn.stdpath :config) path))]
- (when (= type :file)
- (f (fname:match "^(.*)%.fnl$")))))
-
-{: apply-to-files}