summaryrefslogtreecommitdiff
path: root/fnl/aktersnurra.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 14:21:05 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 14:21:05 +0100
commitba5400946e9ee19dce851e91a36bb1670d265233 (patch)
treed0b80efd53111ee097bb52763097be22adfb04cf /fnl/aktersnurra.fnl
parentfdff316fff423dd37a093ce1fff1ab289533305c (diff)
Fix loading of plugins
Diffstat (limited to 'fnl/aktersnurra.fnl')
-rw-r--r--fnl/aktersnurra.fnl7
1 files changed, 3 insertions, 4 deletions
diff --git a/fnl/aktersnurra.fnl b/fnl/aktersnurra.fnl
index df07743..f9c7ca2 100644
--- a/fnl/aktersnurra.fnl
+++ b/fnl/aktersnurra.fnl
@@ -34,8 +34,7 @@
(.. (. icons :star) " ")
(.. (. icons :line) " ")]}}})
-(let [lazy (require :lazy)]
+(let [lazy (require :lazy)
+ plugins (require :plugins)]
(vim.keymap.set :n :<leader>y "<cmd>Lazy home<cr>" {:desc :Home})
- (lazy.setup {:spec [{:import :plugins}
- {:import :plugins.lsp.lspconfig}
- {:import :plugins.lsp.mason}]} opts))
+ (lazy.setup plugins opts))