diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-06 00:15:05 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-06 00:15:05 +0100 |
commit | f005ce541335fb936a85e9997513e94067ef07ae (patch) | |
tree | eed00a537ffa15a8edf80203c2e1ab9e3ba003d7 /fnl | |
parent | 3f66b63f35457f4d19f7aec49ce4bae985fd4d4b (diff) |
Remove and conditional
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/aktersnurra.fnl | 2 |
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)) |