From ba5400946e9ee19dce851e91a36bb1670d265233 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Fri, 5 Jan 2024 14:21:05 +0100 Subject: Fix loading of plugins --- fnl/aktersnurra.fnl | 7 +++---- fnl/plugins/init.fnl | 10 ++++++++++ fnl/plugins/lsp/init.fnl | 2 ++ fnl/plugins/treesitter.fnl | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 fnl/plugins/init.fnl (limited to 'fnl') 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 :y "Lazy home" {:desc :Home}) - (lazy.setup {:spec [{:import :plugins} - {:import :plugins.lsp.lspconfig} - {:import :plugins.lsp.mason}]} opts)) + (lazy.setup plugins opts)) diff --git a/fnl/plugins/init.fnl b/fnl/plugins/init.fnl new file mode 100644 index 0000000..470776e --- /dev/null +++ b/fnl/plugins/init.fnl @@ -0,0 +1,10 @@ +;; Load all plugins. + +(let [plugins [] + 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 :init)) + (table.insert plugins (require (.. :plugins. fname)))))) + (table.insert plugins (require :plugins.lsp)) + plugins) diff --git a/fnl/plugins/lsp/init.fnl b/fnl/plugins/lsp/init.fnl index c06a5aa..f04ba86 100644 --- a/fnl/plugins/lsp/init.fnl +++ b/fnl/plugins/lsp/init.fnl @@ -1 +1,3 @@ ;; Lsp plugins. + +[(require :plugins.lsp.lspconfig) (require :plugins.lsp.mason)] diff --git a/fnl/plugins/treesitter.fnl b/fnl/plugins/treesitter.fnl index 103948d..c863f03 100644 --- a/fnl/plugins/treesitter.fnl +++ b/fnl/plugins/treesitter.fnl @@ -80,5 +80,5 @@ {1 :nvim-treesitter/nvim-treesitter :dependencies [{1 :nvim-treesitter/nvim-treesitter-textobjects :lazy true}] :build ":TSUpdate" - :event [:BufReadPost :BufNewFile] + :event [:VeryLazy] : config} -- cgit v1.2.3-70-g09d2